From: Alexei Sholik Date: Wed, 3 Apr 2013 23:44:03 +0000 (-0700) Subject: doc: fix typos and trailing spaces X-Git-Tag: go1.1rc2~190 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=5977e34741212f80a87370b5a89f4f373405b187;p=gostls13.git doc: fix typos and trailing spaces R=golang-dev, adg CC=golang-dev https://golang.org/cl/8285044 --- diff --git a/doc/code.html b/doc/code.html index e3f53e6f27..04d10fc59a 100644 --- a/doc/code.html +++ b/doc/code.html @@ -219,7 +219,7 @@ $ go install This command builds the hello command, producing an executable binary. It then installs that binary to the workspace's bin directory as hello (or, under Windows, hello.exe). -In our example, tha will be $GOPATH/bin/hello, which is +In our example, that will be $GOPATH/bin/hello, which is $HOME/go/bin/hello.

@@ -276,7 +276,7 @@ Let's write a library and use it from the hello program.

-Again, the first step is to choose a package path (we'll use +Again, the first step is to choose a package path (we'll use github.com/user/newmath) and create the package directory:

@@ -398,7 +398,7 @@ and will reflect the operating system and architecture of your system.

-Go command exectuables are statically linked; the package objects need not +Go command executables are statically linked; the package objects need not be present to run Go programs.

@@ -535,7 +535,7 @@ tree should now now look like this: bin/ hello # command executable pkg/ - linux_amd64/ + linux_amd64/ code.google.com/p/go.example/ newmath.a # package object github.com/user/