]> Cypherpunks repositories - gostls13.git/commitdiff
fix occurrences of occur[^sr .,?!;\n]
authorRobert Griesemer <gri@golang.org>
Tue, 4 Jan 2011 21:16:50 +0000 (13:16 -0800)
committerRobert Griesemer <gri@golang.org>
Tue, 4 Jan 2011 21:16:50 +0000 (13:16 -0800)
R=r, r2
CC=golang-dev
https://golang.org/cl/3794043

src/pkg/exp/datafmt/datafmt.go
src/pkg/go/parser/interface.go
src/pkg/go/printer/printer.go
src/pkg/index/suffixarray/suffixarray_test.go

index 979dedd973848dea54e8f5a2e288b14f9d3edad6..46c412342add9d79df00b42fde84d77a211f64b7 100644 (file)
@@ -656,7 +656,7 @@ func (s *State) eval(fexpr expr, value reflect.Value, index int) bool {
 
 // Eval formats each argument according to the format
 // f and returns the resulting []byte and os.Error. If
-// an error occured, the []byte contains the partially
+// an error occurred, the []byte contains the partially
 // formatted result. An environment env may be passed
 // in which is available in custom formatters through
 // the state parameter.
index f14e4ac7573b3f54cfbc1b2bca932c12aace6e58..84d699a67935910de4159c7f0b0ffc2be92ecade 100644 (file)
@@ -178,7 +178,7 @@ func ParseFiles(fset *token.FileSet, filenames []string, mode uint) (pkgs map[st
 // information is recorded in the file set fset.
 //
 // If the directory couldn't be read, a nil map and the respective error are
-// returned. If a parse error occured, a non-nil but incomplete map and the
+// returned. If a parse error occurred, a non-nil but incomplete map and the
 // error are returned.
 //
 func ParseDir(fset *token.FileSet, path string, filter func(*os.FileInfo) bool, mode uint) (map[string]*ast.Package, os.Error) {
index c0f7344f31ee760d1f7262341af3365a99e2681b..a4ddad50ec1ca2669d5047df8ff2109ef08d459e 100644 (file)
@@ -879,7 +879,7 @@ func (p *printer) commentBefore(next token.Position) bool {
 }
 
 
-// Flush prints any pending comments and whitespace occuring
+// Flush prints any pending comments and whitespace occurring
 // textually before the position of the next token tok. Flush
 // returns true if a pending formfeed character was dropped
 // from the whitespace buffer as a result of interspersing
@@ -922,7 +922,7 @@ const (
 )
 
 
-// Design note: It is tempting to eliminate extra blanks occuring in
+// Design note: It is tempting to eliminate extra blanks occurring in
 //              whitespace in this function as it could simplify some
 //              of the blanks logic in the node printing functions.
 //              However, this would mess up any formatting done by
index cc252a929969167070198651c574bf9ae318033d..659bce042c084261768536fe938e6f6d6f5972fb 100644 (file)
@@ -101,11 +101,11 @@ var testCases = []testCase{
 }
 
 
-// find all occurences of s in source; report at most n occurences
+// find all occurrences of s in source; report at most n occurences
 func find(src, s string, n int) []int {
        var res vector.IntVector
        if s != "" && n != 0 {
-               // find at most n occurences of s in src
+               // find at most n occurrences of s in src
                for i := -1; n < 0 || len(res) < n; {
                        j := strings.Index(src[i+1:], s)
                        if j < 0 {