mirror of
https://github.com/golang/go
synced 2024-11-22 07:24:47 -07:00
all: more typos
R=golang-dev, bradfitz, r CC=golang-dev https://golang.org/cl/5720044
This commit is contained in:
parent
a3caf073a5
commit
de7361bf98
@ -992,7 +992,7 @@ func relPaths(paths []string) []string {
|
||||
var errPrintedOutput = errors.New("already printed output - no need to show error")
|
||||
|
||||
// run runs the command given by cmdline in the directory dir.
|
||||
// If the commnd fails, run prints information about the failure
|
||||
// If the command fails, run prints information about the failure
|
||||
// and returns a non-nil error.
|
||||
func (b *builder) run(dir, shortenDir string, desc string, cmdargs ...interface{}) error {
|
||||
out, err := b.runOut(dir, desc, cmdargs...)
|
||||
|
@ -7,7 +7,7 @@
|
||||
package ecdsa
|
||||
|
||||
// References:
|
||||
// [NSA]: Suite B implementor's guide to FIPS 186-3,
|
||||
// [NSA]: Suite B implementer's guide to FIPS 186-3,
|
||||
// http://www.nsa.gov/ia/_files/ecdsa.pdf
|
||||
// [SECG]: SECG, SEC1
|
||||
// http://www.secg.org/download/aid-780/sec1-v2.pdf
|
||||
|
2
src/pkg/go/printer/testdata/parser.go
vendored
2
src/pkg/go/printer/testdata/parser.go
vendored
@ -52,7 +52,7 @@ type parser struct {
|
||||
// Non-syntactic parser control
|
||||
exprLev int // < 0: in control clause, >= 0: in expression
|
||||
|
||||
// Ordinary identifer scopes
|
||||
// Ordinary identifier scopes
|
||||
pkgScope *ast.Scope // pkgScope.Outer == nil
|
||||
topScope *ast.Scope // top-most scope; may be pkgScope
|
||||
unresolved []*ast.Ident // unresolved identifiers
|
||||
|
@ -178,7 +178,7 @@ func (w *PipeWriter) CloseWithError(err error) error {
|
||||
// It is safe to call Read and Write in parallel with each other or with
|
||||
// Close. Close will complete once pending I/O is done. Parallel calls to
|
||||
// Read, and parallel calls to Write, are also safe:
|
||||
// the invidual calls will be gated sequentially.
|
||||
// the individual calls will be gated sequentially.
|
||||
func Pipe() (*PipeReader, *PipeWriter) {
|
||||
p := new(pipe)
|
||||
p.rwait.L = &p.l
|
||||
|
@ -71,13 +71,13 @@ func StringSlicePtr(ss []string) []*byte {
|
||||
return bb
|
||||
}
|
||||
|
||||
// gbit16 reads a 16-bit numeric value from a 9P protocol message strored in b,
|
||||
// gbit16 reads a 16-bit numeric value from a 9P protocol message stored in b,
|
||||
// returning the value and the remaining slice of b.
|
||||
func gbit16(b []byte) (uint16, []byte) {
|
||||
return uint16(b[0]) | uint16(b[1])<<8, b[2:]
|
||||
}
|
||||
|
||||
// gstring reads a string from a 9P protocol message strored in b,
|
||||
// gstring reads a string from a 9P protocol message stored in b,
|
||||
// returning the value as a Go string and the remaining slice of b.
|
||||
func gstring(b []byte) (string, []byte) {
|
||||
n, b := gbit16(b)
|
||||
|
Loading…
Reference in New Issue
Block a user