summaryrefslogtreecommitdiff
path: root/src/pkg/unsafe
diff options
context:
space:
mode:
authorDavid G. Andersen <dave.andersen@gmail.com>2012-07-09 09:16:10 +1000
committerDavid G. Andersen <dave.andersen@gmail.com>2012-07-09 09:16:10 +1000
commit1ebbcd99a8ce24612b8dc5f9ff777dedc1407889 (patch)
treea05e909161908a237f203490b4e13659be6e04ff /src/pkg/unsafe
parentbbe097ca48065680f06dd4f23b999b23d8cbee2f (diff)
downloadgo-1ebbcd99a8ce24612b8dc5f9ff777dedc1407889.tar.gz
pkg: Removing duplicated words ("of of", etc.), mostly from comments.
Ran 'double.pl' on the pkg tree to identify doubled words. One change to an error string return in x509; the rest are in comments. Thanks to Matt Jibson for the idea. R=golang-dev, bsiegert CC=golang-dev http://codereview.appspot.com/6344089 Committer: Nigel Tao <nigeltao@golang.org>
Diffstat (limited to 'src/pkg/unsafe')
-rw-r--r--src/pkg/unsafe/unsafe.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pkg/unsafe/unsafe.go b/src/pkg/unsafe/unsafe.go
index 024969b42..b661281fb 100644
--- a/src/pkg/unsafe/unsafe.go
+++ b/src/pkg/unsafe/unsafe.go
@@ -32,6 +32,6 @@ func Sizeof(v ArbitraryType) uintptr
func Offsetof(v ArbitraryType) uintptr
// Alignof returns the alignment of the value v. It is the maximum value m such
-// that the address of a variable with the type of v will always always be zero mod m.
+// that the address of a variable with the type of v will always be zero mod m.
// If v is of the form structValue.field, it returns the alignment of field f within struct object obj.
func Alignof(v ArbitraryType) uintptr