diff options
author | Josh Bleecher Snyder <josharian@gmail.com> | 2016-01-27 12:49:13 -0800 |
---|---|---|
committer | Josh Bleecher Snyder <josharian@gmail.com> | 2016-02-21 15:35:50 +0000 |
commit | e43c74a0d8848d58814e1a8302d8f115d7f0b874 (patch) | |
tree | f87b5556f4a13af01c9f4a237d543fbfec9bc222 /src/runtime/mfixalloc.go | |
parent | 5dc053b9dec4dc25fac195065ad32462ac28a543 (diff) | |
download | go-git-e43c74a0d8848d58814e1a8302d8f115d7f0b874.tar.gz |
all: use cannot instead of can not
You can not use cannot, but you cannot spell cannot can not.
Change-Id: I2f0971481a460804de96fd8c9e46a9cc62a3fc5b
Reviewed-on: https://go-review.googlesource.com/19772
Reviewed-by: Rob Pike <r@golang.org>
Diffstat (limited to 'src/runtime/mfixalloc.go')
-rw-r--r-- | src/runtime/mfixalloc.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/runtime/mfixalloc.go b/src/runtime/mfixalloc.go index 8653a6a99f..569a304cf4 100644 --- a/src/runtime/mfixalloc.go +++ b/src/runtime/mfixalloc.go @@ -30,8 +30,8 @@ type fixalloc struct { } // A generic linked list of blocks. (Typically the block is bigger than sizeof(MLink).) -// Since assignments to mlink.next will result in a write barrier being preformed -// this can not be used by some of the internal GC structures. For example when +// Since assignments to mlink.next will result in a write barrier being performed +// this cannot be used by some of the internal GC structures. For example when // the sweeper is placing an unmarked object on the free list it does not want the // write barrier to be called since that could result in the object being reachable. type mlink struct { |