aboutsummaryrefslogtreecommitdiff
path: root/misc
diff options
context:
space:
mode:
authorDaniel Martí <mvdan@mvdan.cc>2020-12-29 21:37:06 +0000
committerDaniel Martí <mvdan@mvdan.cc>2020-12-29 21:49:26 +0000
commit780b4de16b5ba03f2f2ebee35281217552578d50 (patch)
tree764bb64b3b3418db172ba544c02ba6365d4ab223 /misc
parentb4a71c95d2388cbbab70bd751b9706f848643dd6 (diff)
downloadgo-780b4de16b5ba03f2f2ebee35281217552578d50.tar.gz
go-780b4de16b5ba03f2f2ebee35281217552578d50.zip
misc/ios: fix wording for command line instructions
A typo was made, which I noticed while looking through the recent master commits. Change-Id: Ieed5d6664a1f3ff5892d59abf194963b44ef0e55 Reviewed-on: https://go-review.googlesource.com/c/go/+/280454 Trust: Daniel Martí <mvdan@mvdan.cc> Reviewed-by: Cherry Zhang <cherryyz@google.com>
Diffstat (limited to 'misc')
-rw-r--r--misc/ios/README2
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/ios/README b/misc/ios/README
index 5e71862728..0f5e9e335e 100644
--- a/misc/ios/README
+++ b/misc/ios/README
@@ -8,7 +8,7 @@ set to the clang wrapper that invokes clang for iOS. For example, this command r
GOOS=ios GOARCH=amd64 CGO_ENABLED=1 CC_FOR_TARGET=$(pwd)/../misc/ios/clangwrap.sh ./all.bash
If CC_FOR_TARGET is not set when the toolchain is built (make.bash or all.bash), CC
-can be set at commond line. For example,
+can be set on the command line. For example,
GOOS=ios GOARCH=amd64 CGO_ENABLED=1 CC=$(go env GOROOT)/misc/ios/clangwrap.sh go build