Skip to content

Commit

Permalink
Fix 3 changelog typos
Browse files Browse the repository at this point in the history
  • Loading branch information
ntrel committed Oct 23, 2013
1 parent bdf5789 commit 1479a19
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions changelog.dd
Expand Up @@ -123,7 +123,7 @@ template isIntOrFloat(T)
static if (is(T == int) || is(T == float))
enum isIntOrFloat = true;
else
enum isIntOrFloat = true;
enum isIntOrFloat = false;
}

void main()
Expand Down Expand Up @@ -375,7 +375,7 @@ template Traits(T) if (is(T == string))

auto func(T, A...)(A args) if (is(T == string))
{
return 1;
return 2;
}
---------
---------
Expand Down Expand Up @@ -671,7 +671,7 @@ unittest

$(LI $(LNAME2 pure_conv_format, $(D std.conv.to) and $(D std.string.format) are now pure functions:))

$(P Since 2.064, pure functions can take advantage of $(D conv) and $(D format). For example:)
$(P Since 2.064, pure functions can take advantage of $(D to) and $(D format). For example:)

---------
import std.conv;
Expand Down

0 comments on commit 1479a19

Please sign in to comment.