]> Cypherpunks repositories - gostls13.git/commitdiff
spec: a couple of minor tweaks to the wording of the import section
authorRob Pike <r@golang.org>
Sat, 22 Sep 2012 19:03:43 +0000 (05:03 +1000)
committerRob Pike <r@golang.org>
Sat, 22 Sep 2012 19:03:43 +0000 (05:03 +1000)
- remove ambiguous 'it'
- use a lower-case PackageName in the example

R=golang-dev, dsymonds
CC=golang-dev
https://golang.org/cl/6552057

doc/go_spec.html

index 675970300dd281c3882c463577ea6496bfadf53d..7e5d5042ed8fab26e1ef70e53b0dea837e626432 100644 (file)
@@ -1,6 +1,6 @@
 <!--{
        "Title": "The Go Programming Language Specification",
-       "Subtitle": "Version of September 18, 2012",
+       "Subtitle": "Version of September 22, 2012",
        "Path": "/ref/spec"
 }-->
 
@@ -5177,7 +5177,7 @@ An implementation may require that all source files for a package inhabit the sa
 An import declaration states that the source file containing the declaration
 depends on functionality of the <i>imported</i> package
 (<a href="#Program_initialization_and_execution">§Program initialization and execution</a>)
-and it enables access to <a href="#Exported_identifiers">exported</a> identifiers
+and enables access to <a href="#Exported_identifiers">exported</a> identifiers
 of that package.
 The import names an identifier (PackageName) to be used for access and an ImportPath
 that specifies the package to be imported.
@@ -5231,7 +5231,7 @@ various types of import declaration.
 Import declaration          Local name of Sin
 
 import   "lib/math"         math.Sin
-import M "lib/math"         M.Sin
+import m "lib/math"         m.Sin
 import . "lib/math"         Sin
 </pre>