]> Cypherpunks repositories - gostls13.git/commitdiff
replace "ideal" with "untyped"
authorRobert Griesemer <gri@golang.org>
Thu, 1 Oct 2009 23:58:17 +0000 (16:58 -0700)
committerRobert Griesemer <gri@golang.org>
Thu, 1 Oct 2009 23:58:17 +0000 (16:58 -0700)
R=r
DELTA=1  (0 added, 0 deleted, 1 changed)
OCL=35242
CL=35258

doc/go_tutorial.txt

index 201e945c4851d73519c1ee817b4d1e04ca8328c3..e14736079fcba60df20ae63fbe6fb25c02a044d6 100644 (file)
@@ -281,7 +281,7 @@ An Interlude about Constants
 
 Although integers come in lots of sizes in Go, integer constants do not.
 There are no constants like "0ll" or "0x0UL".   Instead, integer
-constants are evaluated as ideal, large-precision values that
+constants are evaluated as large-precision values that
 can overflow only when they are assigned to an integer variable with
 too little precision to represent the value.
 
@@ -416,7 +416,7 @@ Finally we can run the program:
        % helloworld3
        hello, world
        can't open file; err=No such file or directory
-       % 
+       %
 
 Rotting cats
 ----
@@ -490,7 +490,7 @@ Here it is in action:
        abcdefghijklmnopqrstuvwxyz
        % echo abcdefghijklmnopqrstuvwxyz | ./cat --rot13
        nopqrstuvwxyzabcdefghijklm
-       % 
+       %
 </pre>
 
 Fans of dependency injection may take cheer from how easily interfaces