]> Cypherpunks repositories - gostls13.git/commitdiff
fix various comments
authorRobert Griesemer <gri@golang.org>
Fri, 17 Sep 2010 01:21:01 +0000 (18:21 -0700)
committerRobert Griesemer <gri@golang.org>
Fri, 17 Sep 2010 01:21:01 +0000 (18:21 -0700)
(os package comments were duplicates)

R=rsc
CC=golang-dev
https://golang.org/cl/2205042

src/pkg/go/doc/comment.go
src/pkg/os/file_unix.go
src/pkg/os/file_windows.go

index 583b763eaf6d0ca4b251b643d5d4294dc7c296c5..e8595a690baef965a098f2fe0e957d44f4b6137f 100644 (file)
@@ -194,7 +194,7 @@ var (
 // into a link). Go identifiers that appear in the words map are italicized; if
 // the corresponding map value is not the empty string, it is considered a URL
 // and the word is converted into a link. If nice is set, the remaining text's
-// appearance is improved where is makes sense (e.g., `` is turned into &ldquo;
+// appearance is improved where it makes sense (e.g., `` is turned into &ldquo;
 // and '' into &rdquo;).
 func emphasize(w io.Writer, line []byte, words map[string]string, nice bool) {
        for {
index 9bd75bce01aa0412c8aefcc7f41d7ecc21a962a4..df5894459ee141fb433d5203a151d69e41a644b8 100644 (file)
@@ -2,8 +2,6 @@
 // Use of this source code is governed by a BSD-style
 // license that can be found in the LICENSE file.
 
-// The os package provides a platform-independent interface to operating
-// system functionality.  The design is Unix-like.
 package os
 
 import (
index e26c138c383372b2853924d64160ac2a79aefb67..658e9c8ddf2d2886835760a4f9cbe2106438ed15 100644 (file)
@@ -2,8 +2,6 @@
 // Use of this source code is governed by a BSD-style
 // license that can be found in the LICENSE file.
 
-// The os package provides a platform-independent interface to operating
-// system functionality.  The design is Unix-like.
 package os
 
 import (