aboutsummaryrefslogtreecommitdiff
path: root/src/syscall
diff options
context:
space:
mode:
authorMichael Munday <munday@ca.ibm.com>2016-03-22 15:08:09 -0400
committerIan Lance Taylor <iant@golang.org>2016-03-22 20:35:53 +0000
commit5cdb3d0321c4615ff271353030e3742912e241ba (patch)
tree56f896e457a26b0df7e197213f2e15073d535dd2 /src/syscall
parent90a59d448e152d790c2043a5777d9ee496365bcf (diff)
downloadgo-5cdb3d0321c4615ff271353030e3742912e241ba.tar.xz
syscall: correct spelling/typos in comment
Change-Id: Ib44c6b1ce07aa8fb67033cf21e177a90fd4005dc Reviewed-on: https://go-review.googlesource.com/21002 Reviewed-by: Ian Lance Taylor <iant@golang.org>
Diffstat (limited to 'src/syscall')
-rwxr-xr-xsrc/syscall/mkall.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/syscall/mkall.sh b/src/syscall/mkall.sh
index 85fab4ff3e..6c19c5b7be 100755
--- a/src/syscall/mkall.sh
+++ b/src/syscall/mkall.sh
@@ -156,8 +156,8 @@ freebsd_arm)
mkerrors="$mkerrors"
mksyscall="./mksyscall.pl -l32 -arm"
mksysnum="curl -s 'http://svn.freebsd.org/base/stable/10/sys/kern/syscalls.master' | ./mksysnum_freebsd.pl"
- # Let the type of C char be singed for making the bare syscall
- # API consistent across over platforms.
+ # Let the type of C char be signed to make the bare syscall
+ # API consistent between platforms.
mktypes="GOARCH=$GOARCH go tool cgo -godefs -- -fsigned-char"
;;
linux_386)
@@ -189,8 +189,8 @@ linux_arm64)
exit 1
fi
mksysnum="./mksysnum_linux.pl $unistd_h"
- # Let the type of C char be singed for making the bare syscall
- # API consistent across over platforms.
+ # Let the type of C char be signed to make the bare syscall
+ # API consistent between platforms.
mktypes="GOARCH=$GOARCH go tool cgo -godefs -- -fsigned-char"
;;
linux_ppc64)