Skip to content

Commit

Permalink
all: fix a bunch of misspellings
Browse files Browse the repository at this point in the history
Change-Id: I5b909df0fd048cd66c5a27fca1b06466d3bcaac7
GitHub-Last-Rev: 778c5d21311abee09a5fbda2e4005a5fd4cc3f9f
GitHub-Pull-Request: golang/go#35624
Reviewed-on: https://go-review.googlesource.com/c/go/+/207421
Run-TryBot: Ian Lance Taylor <[email protected]>
TryBot-Result: Gobot Gobot <[email protected]>
Reviewed-by: Ian Lance Taylor <[email protected]>
  • Loading branch information
scop authored and ianlancetaylor committed Nov 15, 2019
1 parent d856e05 commit 440f7d6
Show file tree
Hide file tree
Showing 31 changed files with 36 additions and 36 deletions.
2 changes: 1 addition & 1 deletion misc/trace/trace_viewer_full.html
Original file line number Diff line number Diff line change
Expand Up @@ -6307,7 +6307,7 @@ <h2>General</h2>
className=className.toLowerCase();if(opt_parentConstructor&&!opt_parentConstructor.tagName){throw new Error('opt_parentConstructor was not '+'created by tr.ui.b.define');}
let tagName=className;let tagNS=undefined;if(opt_parentConstructor){if(opt_tagNS){throw new Error('Must not specify tagNS if parentConstructor is given');}
let parent=opt_parentConstructor;while(parent&&parent.tagName){tagName=parent.tagName;tagNS=parent.tagNS;parent=parent.parentConstructor;}}else{tagNS=opt_tagNS;}
function f(){if(opt_parentConstructor&&f.prototype.__proto__!==opt_parentConstructor.prototype){throw new Error(className+' prototye\'s __proto__ field is messed up. '+'It MUST be the prototype of '+opt_parentConstructor.tagName);}
function f(){if(opt_parentConstructor&&f.prototype.__proto__!==opt_parentConstructor.prototype){throw new Error(className+' prototype\'s __proto__ field is messed up. '+'It MUST be the prototype of '+opt_parentConstructor.tagName);}
let el;if(tagNS===undefined){el=tr.doc.createElement(tagName);}else{el=tr.doc.createElementNS(tagNS,tagName);}
f.decorate.call(this,el,arguments);return el;}
f.decorate=function(el){el.__proto__=f.prototype;el.decorate.apply(el,arguments[1]);el.constructor=f;};f.className=className;f.tagName=tagName;f.tagNS=tagNS;f.parentConstructor=(opt_parentConstructor?opt_parentConstructor:undefined);f.toString=function(){if(!f.parentConstructor){return f.tagName;}
Expand Down
2 changes: 1 addition & 1 deletion src/cmd/compile/internal/gc/bexport.go
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ const (
)

// untype returns the "pseudo" untyped type for a Ctype (import/export use only).
// (we can't use an pre-initialized array because we must be sure all types are
// (we can't use a pre-initialized array because we must be sure all types are
// set up)
func untype(ctype Ctype) *types.Type {
switch ctype {
Expand Down
2 changes: 1 addition & 1 deletion src/cmd/compile/internal/gc/plive.go
Original file line number Diff line number Diff line change
Expand Up @@ -652,7 +652,7 @@ func (lv *Liveness) markUnsafePoints() {

lv.unsafePoints = bvalloc(int32(lv.f.NumValues()))

// Mark architecture-specific unsafe pointes.
// Mark architecture-specific unsafe points.
for _, b := range lv.f.Blocks {
for _, v := range b.Values {
if v.Op.UnsafePoint() {
Expand Down
2 changes: 1 addition & 1 deletion src/cmd/compile/internal/gc/range.go
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ func typecheckrangeExpr(n *Node) {
v2 = n.List.Second()
}

// this is not only a optimization but also a requirement in the spec.
// this is not only an optimization but also a requirement in the spec.
// "if the second iteration variable is the blank identifier, the range
// clause is equivalent to the same clause with only the first variable
// present."
Expand Down
2 changes: 1 addition & 1 deletion src/cmd/compile/internal/ssa/block.go
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ func (b *Block) CopyControls(from *Block) {
}

// Reset sets the block to the provided kind and clears all the blocks control
// and auxilliary values. Other properties of the block, such as its successors,
// and auxiliary values. Other properties of the block, such as its successors,
// predecessors and values are left unmodified.
func (b *Block) Reset(kind BlockKind) {
b.Kind = kind
Expand Down
2 changes: 1 addition & 1 deletion src/cmd/compile/internal/ssa/gen/ARM64.rules
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,7 @@
(Geq32U x y) -> (GreaterEqualU (CMPW x y))
(Geq64U x y) -> (GreaterEqualU (CMP x y))

// Optimize comparision between a floating-point value and 0.0 with "FCMP $(0.0), Fn"
// Optimize comparison between a floating-point value and 0.0 with "FCMP $(0.0), Fn"
(FCMPS x (FMOVSconst [0])) -> (FCMPS0 x)
(FCMPS (FMOVSconst [0]) x) -> (InvertFlags (FCMPS0 x))
(FCMPD x (FMOVDconst [0])) -> (FCMPD0 x)
Expand Down
2 changes: 1 addition & 1 deletion src/cmd/compile/internal/ssa/gen/generic.rules
Original file line number Diff line number Diff line change
Expand Up @@ -1180,7 +1180,7 @@

// Divisibility checks x%c == 0 convert to multiply and rotate.
// Note, x%c == 0 is rewritten as x == c*(x/c) during the opt pass
// where (x/c) is peformed using multiplication with magic constants.
// where (x/c) is performed using multiplication with magic constants.
// To rewrite x%c == 0 requires pattern matching the rewritten expression
// and checking that the division by the same constant wasn't already calculated.
// This check is made by counting uses of the magic constant multiplication.
Expand Down
2 changes: 1 addition & 1 deletion src/cmd/compile/internal/ssa/nilcheck_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ func TestNilcheckKeepRemove(t *testing.T) {
}
}

// TestNilcheckInFalseBranch tests that nil checks in the false branch of an nilcheck
// TestNilcheckInFalseBranch tests that nil checks in the false branch of a nilcheck
// block are *not* removed.
func TestNilcheckInFalseBranch(t *testing.T) {
c := testConfig(t)
Expand Down
2 changes: 1 addition & 1 deletion src/cmd/link/internal/ld/dwarf.go
Original file line number Diff line number Diff line change
Expand Up @@ -1133,7 +1133,7 @@ func writelines(ctxt *Link, unit *sym.CompilationUnit, ls *sym.Symbol) {
lastAddr = addr

// Output the line table.
// TODO: Now that we have all the debug information in seperate
// TODO: Now that we have all the debug information in separate
// symbols, it would make sense to use a rope, and concatenate them all
// together rather then the append() below. This would allow us to have
// the compiler emit the DW_LNE_set_address and a rope data structure
Expand Down
8 changes: 4 additions & 4 deletions src/cmd/link/internal/loadpe/ldpe.go
Original file line number Diff line number Diff line change
Expand Up @@ -459,16 +459,16 @@ func readpesym(arch *sys.Arch, lookup func(string, int) *sym.Symbol, f *pe.File,
case sys.AMD64:
if name == "__imp___acrt_iob_func" {
// Do not rename __imp___acrt_iob_func into __acrt_iob_func,
// becasue __imp___acrt_iob_func symbol is real
// (see commit b295099 from git:https://git.code.sf.net/p/mingw-w64/mingw-w64 for detials).
// because __imp___acrt_iob_func symbol is real
// (see commit b295099 from git:https://git.code.sf.net/p/mingw-w64/mingw-w64 for details).
} else {
name = strings.TrimPrefix(name, "__imp_") // __imp_Name => Name
}
case sys.I386:
if name == "__imp____acrt_iob_func" {
// Do not rename __imp____acrt_iob_func into ___acrt_iob_func,
// becasue __imp____acrt_iob_func symbol is real
// (see commit b295099 from git:https://git.code.sf.net/p/mingw-w64/mingw-w64 for detials).
// because __imp____acrt_iob_func symbol is real
// (see commit b295099 from git:https://git.code.sf.net/p/mingw-w64/mingw-w64 for details).
} else {
name = strings.TrimPrefix(name, "__imp_") // __imp_Name => Name
}
Expand Down
2 changes: 1 addition & 1 deletion src/crypto/dsa/dsa_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ func TestSignAndVerifyWithBadPublicKey(t *testing.T) {
}

if Verify(&pub, []byte("testing"), fromHex("2"), fromHex("4")) {
t.Errorf("Verify unexpected success with non-existant mod inverse of Q")
t.Errorf("Verify unexpected success with non-existent mod inverse of Q")
}
}

Expand Down
2 changes: 1 addition & 1 deletion src/crypto/elliptic/p256.go
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ func (p256Curve) ScalarMult(bigX, bigY *big.Int, scalar []byte) (x, y *big.Int)

// Field elements are represented as nine, unsigned 32-bit words.
//
// The value of an field element is:
// The value of a field element is:
// x[0] + (x[1] * 2**29) + (x[2] * 2**57) + ... + (x[8] * 2**228)
//
// That is, each limb is alternately 29 or 28-bits wide in little-endian
Expand Down
2 changes: 1 addition & 1 deletion src/crypto/tls/handshake_server.go
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ func (hs *serverHandshakeState) processClientHello() error {
hs.ecdheOk = supportsECDHE(c.config, hs.clientHello.supportedCurves, hs.clientHello.supportedPoints)

if hs.ecdheOk {
// Although omiting the ec_point_formats extension is permitted, some
// Although omitting the ec_point_formats extension is permitted, some
// old OpenSSL version will refuse to handshake if not present.
//
// Per RFC 4492, section 5.1.2, implementations MUST support the
Expand Down
2 changes: 1 addition & 1 deletion src/crypto/tls/handshake_server_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ func TestTLS12OnlyCipherSuites(t *testing.T) {
}

func TestTLSPointFormats(t *testing.T) {
// Test that a Server returns the ec_point_format extention when ECC is
// Test that a Server returns the ec_point_format extension when ECC is
// negotiated, and not returned on RSA handshake.
tests := []struct {
name string
Expand Down
2 changes: 1 addition & 1 deletion src/debug/elf/file_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -818,6 +818,6 @@ func TestIssue10996(t *testing.T) {
"0000")
_, err := NewFile(bytes.NewReader(data))
if err == nil {
t.Fatalf("opening invalid ELF file unexpectedly suceeded")
t.Fatalf("opening invalid ELF file unexpectedly succeeded")
}
}
4 changes: 2 additions & 2 deletions src/debug/pe/file.go
Original file line number Diff line number Diff line change
Expand Up @@ -475,7 +475,7 @@ func readOptionalHeader(r io.ReadSeeker, sz uint16) (interface{}, error) {
var (
oh32 OptionalHeader32
// There can be 0 or more data directories. So the minimum size of optional
// header is calculated by substracting oh32.DataDirectory size from oh32 size.
// header is calculated by subtracting oh32.DataDirectory size from oh32 size.
oh32MinSz = binary.Size(oh32) - binary.Size(oh32.DataDirectory)
)

Expand Down Expand Up @@ -529,7 +529,7 @@ func readOptionalHeader(r io.ReadSeeker, sz uint16) (interface{}, error) {
var (
oh64 OptionalHeader64
// There can be 0 or more data directories. So the minimum size of optional
// header is calculated by substracting oh64.DataDirectory size from oh64 size.
// header is calculated by subtracting oh64.DataDirectory size from oh64 size.
oh64MinSz = binary.Size(oh64) - binary.Size(oh64.DataDirectory)
)

Expand Down
2 changes: 1 addition & 1 deletion src/internal/bytealg/count_s390x.s
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ TEXT countbytebody<>(SB), NOSPLIT|NOFRAME, $0-0
vxchunks:
// Load 0x01 into every byte element in the 16-byte mask vector.
VREPIB $1, V_MASK // V_MASK = [16]byte{1, 1, ..., 1, 1}
VZERO V_CNT // intial uint128 count of 0
VZERO V_CNT // initial uint128 count of 0

vxloop:
// Load input bytes in 16-byte chunks.
Expand Down
2 changes: 1 addition & 1 deletion src/math/big/nat.go
Original file line number Diff line number Diff line change
Expand Up @@ -886,7 +886,7 @@ func (z nat) divRecursiveStep(u, v nat, depth int, tmp *nat, temps []*nat) {
// u = q̂ (v - v_l) + rh << s + u_l
// After the above step, u contains a remainder:
// u = rh << s + u_l
// and we need to substract q̂ v_l
// and we need to subtract q̂ v_l
//
// But it may be a bit too large, in which case q̂ needs to be smaller.
qhatv := tmp.make(3 * n)
Expand Down
2 changes: 1 addition & 1 deletion src/net/http/serve_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4352,7 +4352,7 @@ func TestCloseWrite(t *testing.T) {

// This verifies that a handler can Flush and then Hijack.
//
// An similar test crashed once during development, but it was only
// A similar test crashed once during development, but it was only
// testing this tangentially and temporarily until another TODO was
// fixed.
//
Expand Down
4 changes: 2 additions & 2 deletions src/net/http/transfer.go
Original file line number Diff line number Diff line change
Expand Up @@ -633,11 +633,11 @@ func chunked(te []string) bool { return len(te) > 0 && te[len(te)-1] == "chunked
// implicitlyChunked is a helper to check for implicity of chunked, because
// RFC 7230 Section 3.3.1 says that the sender MUST apply chunked as the final
// payload body to ensure that the message is framed for both the request
// and the body. Since "identity" is incompatabile with any other transformational
// and the body. Since "identity" is incompatible with any other transformational
// encoding cannot co-exist, the presence of "identity" will cause implicitlyChunked
// to return false.
func implicitlyChunked(te []string) bool {
if len(te) == 0 { // No transfer-encodings passed in, so not implicity chunked.
if len(te) == 0 { // No transfer-encodings passed in, so not implicitly chunked.
return false
}
for _, tei := range te {
Expand Down
2 changes: 1 addition & 1 deletion src/net/http/transport.go
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ const DefaultMaxIdleConnsPerHost = 2
// Request.GetBody defined. HTTP requests are considered idempotent if
// they have HTTP methods GET, HEAD, OPTIONS, or TRACE; or if their
// Header map contains an "Idempotency-Key" or "X-Idempotency-Key"
// entry. If the idempotency key value is an zero-length slice, the
// entry. If the idempotency key value is a zero-length slice, the
// request is treated as idempotent but the header is not sent on the
// wire.
type Transport struct {
Expand Down
2 changes: 1 addition & 1 deletion src/net/http/transport_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3717,7 +3717,7 @@ func TestTransportRemovesH2ConnsAfterIdle(t *testing.T) {
}
}

// This tests that an client requesting a content range won't also
// This tests that a client requesting a content range won't also
// implicitly ask for gzip support. If they want that, they need to do it
// on their own.
// golang.org/issue/8923
Expand Down
2 changes: 1 addition & 1 deletion src/net/ipsock_posix.go
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ func ipToSockaddr(family int, ip IP, port int, zone string) (syscall.Sockaddr, e
// of IP node.
//
// When the IP node supports IPv4-mapped IPv6 address,
// we allow an listener to listen to the wildcard
// we allow a listener to listen to the wildcard
// address of both IP addressing spaces by specifying
// IPv6 wildcard address.
if len(ip) == 0 || ip.Equal(IPv4zero) {
Expand Down
2 changes: 1 addition & 1 deletion src/net/lookup_windows.go
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,7 @@ func validRecs(r *syscall.DNSRecord, dnstype uint16, name string) []*syscall.DNS

// returns the last CNAME in chain
func resolveCNAME(name *uint16, r *syscall.DNSRecord) *uint16 {
// limit cname resolving to 10 in case of a infinite CNAME loop
// limit cname resolving to 10 in case of an infinite CNAME loop
Cname:
for cnameloop := 0; cnameloop < 10; cnameloop++ {
for p := r; p != nil; p = p.Next {
Expand Down
2 changes: 1 addition & 1 deletion src/runtime/defs_aix.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
Input to cgo -godefs
GOARCH=ppc64 go tool cgo -godefs defs_aix.go > defs_aix_ppc64_tmp.go
This is only an helper to create defs_aix_ppc64.go
This is only a helper to create defs_aix_ppc64.go
Go runtime functions require the "linux" name of fields (ss_sp, si_addr, etc)
However, AIX structures don't provide such names and must be modified.
Expand Down
2 changes: 1 addition & 1 deletion src/runtime/error.go
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ func (e plainError) Error() string {
return string(e)
}

// An boundsError represents a an indexing or slicing operation gone wrong.
// A boundsError represents an indexing or slicing operation gone wrong.
type boundsError struct {
x int64
y int
Expand Down
2 changes: 1 addition & 1 deletion src/runtime/mgcscavenge.go
Original file line number Diff line number Diff line change
Expand Up @@ -521,7 +521,7 @@ func fillAligned(x uint64, m uint) uint64 {
// "[It] works by first zeroing the high bits of the [8]
// bytes in the word. Subsequently, it adds a number that
// will result in an overflow to the high bit of a byte if
// any of the low bits were initialy set. Next the high
// any of the low bits were initially set. Next the high
// bits of the original word are ORed with these values;
// thus, the high bit of a byte is set iff any bit in the
// byte was set. Finally, we determine if any of these high
Expand Down
2 changes: 1 addition & 1 deletion src/runtime/mheap.go
Original file line number Diff line number Diff line change
Expand Up @@ -1419,7 +1419,7 @@ func (h *mheap) freeSpanLocked(s *mspan, acctinuse, acctidle bool) {
// unscav and adds it into scav before continuing.
func (h *mheap) scavengeAll() {
// Disallow malloc or panic while holding the heap lock. We do
// this here because this is an non-mallocgc entry-point to
// this here because this is a non-mallocgc entry-point to
// the mheap API.
gp := getg()
gp.m.mallocing++
Expand Down
2 changes: 1 addition & 1 deletion src/runtime/pprof/pprof_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ func containsInlinedCall(f interface{}, maxBytes int) bool {
}

// findInlinedCall returns the PC of an inlined function call within
// the funtion body for the function f if any.
// the function body for the function f if any.
func findInlinedCall(f interface{}, maxBytes int) (pc uint64, found bool) {
fFunc := runtime.FuncForPC(uintptr(funcPC(f)))
if fFunc == nil || fFunc.Entry() == 0 {
Expand Down
2 changes: 1 addition & 1 deletion src/runtime/slice.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ type slice struct {
cap int
}

// An notInHeapSlice is a slice backed by go:notinheap memory.
// A notInHeapSlice is a slice backed by go:notinheap memory.
type notInHeapSlice struct {
array *notInHeap
len int
Expand Down
2 changes: 1 addition & 1 deletion src/runtime/stack.go
Original file line number Diff line number Diff line change
Expand Up @@ -627,7 +627,7 @@ func adjustframe(frame *stkframe, arg unsafe.Pointer) bool {
print(" adjusting ", funcname(f), " frame=[", hex(frame.sp), ",", hex(frame.fp), "] pc=", hex(frame.pc), " continpc=", hex(frame.continpc), "\n")
}
if f.funcID == funcID_systemstack_switch {
// A special routine at the bottom of stack of a goroutine that does an systemstack call.
// A special routine at the bottom of stack of a goroutine that does a systemstack call.
// We will allow it to be copied even though we don't
// have full GC info for it (because it is written in asm).
return true
Expand Down

0 comments on commit 440f7d6

Please sign in to comment.