November 18, 2006 [Issue 511] Various problems in the documentation | ||||
---|---|---|---|---|
| ||||
Posted in reply to d-bugmail | http://d.puremagic.com/issues/show_bug.cgi?id=511 ------- Comment #36 from deewiant@gmail.com 2006-11-18 13:20 ------- Created an attachment (id=74) --> (http://d.puremagic.com/issues/attachment.cgi?id=74&action=view) Listing for http://www.digitalmars.com/d/statement.html -- |
November 18, 2006 [Issue 511] Various problems in the documentation | ||||
---|---|---|---|---|
| ||||
Posted in reply to d-bugmail | http://d.puremagic.com/issues/show_bug.cgi?id=511 ------- Comment #37 from deewiant@gmail.com 2006-11-18 13:21 ------- Created an attachment (id=75) --> (http://d.puremagic.com/issues/attachment.cgi?id=75&action=view) Listing for http://www.digitalmars.com/d/template.html -- |
November 18, 2006 [Issue 511] Various problems in the documentation | ||||
---|---|---|---|---|
| ||||
Posted in reply to d-bugmail | http://d.puremagic.com/issues/show_bug.cgi?id=511 ------- Comment #38 from deewiant@gmail.com 2006-11-18 13:21 ------- Created an attachment (id=76) --> (http://d.puremagic.com/issues/attachment.cgi?id=76&action=view) Listing for http://www.digitalmars.com/d/templates-revisited.html -- |
November 18, 2006 [Issue 511] Various problems in the documentation | ||||
---|---|---|---|---|
| ||||
Posted in reply to d-bugmail | http://d.puremagic.com/issues/show_bug.cgi?id=511 ------- Comment #39 from deewiant@gmail.com 2006-11-18 13:21 ------- Created an attachment (id=77) --> (http://d.puremagic.com/issues/attachment.cgi?id=77&action=view) Listing for http://www.digitalmars.com/d/type.html -- |
November 18, 2006 [Issue 511] Various problems in the documentation | ||||
---|---|---|---|---|
| ||||
Posted in reply to d-bugmail | http://d.puremagic.com/issues/show_bug.cgi?id=511 ------- Comment #40 from deewiant@gmail.com 2006-11-18 13:24 ------- Created an attachment (id=78) --> (http://d.puremagic.com/issues/attachment.cgi?id=78&action=view) Listing for http://www.digitalmars.com/d/warnings.html Phew! That's all folks. I won't be going through the Phobos documentation, at least right now: it's quite a bit more work since there are quite a bit more holes. To go through it in any reasonable way would practically require writing a large part of it again. -- |
November 28, 2006 Re: [Issue 511] New: Various problems in the documentation | ||||
---|---|---|---|---|
| ||||
Posted in reply to d-bugmail | d-bugmail@puremagic.com wrote:
> - Matti "Deewiant" Niemenmaa, 2006-11-15
You've put a lot of work into this. Thanks!
|
December 03, 2006 [Issue 511] Various problems in the documentation | ||||
---|---|---|---|---|
| ||||
Posted in reply to d-bugmail | http://d.puremagic.com/issues/show_bug.cgi?id=511 ------- Comment #41 from deewiant@gmail.com 2006-12-03 05:16 ------- Most changes folded in for DMD 0.176. The following issues, mostly of type NITPICK, remain (note that I didn't go through the pages thoroughly again, I just checked the changes I had already marked and their immediate vicinity): http://www.digitalmars.com/d/class.html Under "Constructors", there is a code snippet "this() { if (a) ? this(1) : super(); } // ok" which is syntactically invalid. Remove the "if". http://www.digitalmars.com/d/ctod.html Under "Struct Initializations", there's an incorrect apostrophe in "{}'s". Under "Declaring struct types and variables", there's an excessive ampersand in the last sentence. http://www.digitalmars.com/d/dbc.html Under "In, Out and Inheritance" only one of the "satisified" typos was corrected to "satisfied". http://www.digitalmars.com/d/expression.html The last code block under "IsExpression" refers to x in a comment, while it should say v. http://www.digitalmars.com/d/faq.html Under "Why are floating point values default initialized to NaN rather than 0?" the word "NaN's", with an incorrect apostrophe, is used instead of "NaNs". http://www.digitalmars.com/d/operatoroverloading.html Under "Overloading == and !=" it is stated that that "if (a == null)" is converted to "if (a.opCmp(null)) which will fail if opCmp() is a virtual function". It should say opEquals instead of opCmp. http://www.digitalmars.com/d/templates-revisited.html Under "SFINAE - Substitution Failure Is Not An Error" the last code snippet asserts when run: to fix it, change "typedef" to "alias", matching the change made to http://www.digitalmars.com/d/cpptod.html. -- |
December 09, 2006 [Issue 511] Various problems in the documentation | ||||
---|---|---|---|---|
| ||||
Posted in reply to d-bugmail | http://d.puremagic.com/issues/show_bug.cgi?id=511 ------- Comment #42 from brunodomedeiros+bugz@gmail.com 2006-12-09 07:07 ------- A Problem in http://www.digitalmars.com/d/function.html , in Lazy Variadic Functions, the following code segment is wrong: int delegate[] dg; foo(1, 3+x, dg, cast(int delegate[])null); Should be: int delegate() dg; foo(1, 3+x, dg, cast(int delegate())null); -- |
December 09, 2006 Re: [Issue 511] Various problems in the documentation | ||||
---|---|---|---|---|
| ||||
Posted in reply to d-bugmail | d-bugmail@puremagic.com wrote: > http://d.puremagic.com/issues/show_bug.cgi?id=511 > > ------- Comment #41 from deewiant@gmail.com 2006-12-03 05:16 ------- > Most changes folded in for DMD 0.176. The following issues, mostly of type > NITPICK, remain (note that I didn't go through the pages thoroughly again, I > just checked the changes I had already marked and their immediate vicinity): > Have you considered reviewing spec diffs between releases, so that it is practical to fully keep up with release changes? -- Bruno Medeiros - MSc in CS/E student http://www.prowiki.org/wiki4d/wiki.cgi?BrunoMedeiros#D |
December 10, 2006 [Issue 511] Various problems in the documentation | ||||
---|---|---|---|---|
| ||||
Posted in reply to d-bugmail | http://d.puremagic.com/issues/show_bug.cgi?id=511 bugzilla@digitalmars.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED ------- Comment #43 from bugzilla@digitalmars.com 2006-12-09 21:09 ------- Fixed DMD 0.177 -- |
Copyright © 1999-2021 by the D Language Foundation