From 5977e34741212f80a87370b5a89f4f373405b187 Mon Sep 17 00:00:00 2001 From: Alexei Sholik Date: Wed, 3 Apr 2013 16:44:03 -0700 Subject: [PATCH] doc: fix typos and trailing spaces R=golang-dev, adg CC=golang-dev https://golang.org/cl/8285044 --- doc/code.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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/ -- 2.50.0