aboutsummaryrefslogtreecommitdiff
path: root/_content/doc/tutorial/getting-started.html
diff options
context:
space:
mode:
authorAlexAntonik <antonikavv@gmail.com>2025-03-09 21:09:09 +0000
committerGopher Robot <gobot@golang.org>2025-03-11 13:47:35 -0700
commit00f88d9dbd54f85b0e1a67adeff42f96613c3f74 (patch)
tree437067e474344d7bcd406d9a6855a562930856c8 /_content/doc/tutorial/getting-started.html
parent4e0e67aa66613fa03c1c32e5173a68b08ff75bc9 (diff)
downloadgo-x-website-00f88d9dbd54f85b0e1a67adeff42f96613c3f74.tar.xz
_content/doc/tutorial/getting-started.html fix formating
Made more clear what exact command is Change-Id: I184d9a44318aa5f816d79ad6a03b03b174a6a6e2 GitHub-Last-Rev: a14e82f00ce582c73d0c6a4a6209b2dda093df29 GitHub-Pull-Request: golang/website#313 Reviewed-on: https://go-review.googlesource.com/c/website/+/656215 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Ian Lance Taylor <iant@google.com> Reviewed-by: David Chase <drchase@google.com> Auto-Submit: Ian Lance Taylor <iant@google.com>
Diffstat (limited to '_content/doc/tutorial/getting-started.html')
-rw-r--r--_content/doc/tutorial/getting-started.html5
1 files changed, 2 insertions, 3 deletions
diff --git a/_content/doc/tutorial/getting-started.html b/_content/doc/tutorial/getting-started.html
index d685d8e5..c3cc4d3c 100644
--- a/_content/doc/tutorial/getting-started.html
+++ b/_content/doc/tutorial/getting-started.html
@@ -103,7 +103,7 @@ cd hello
<p>
To enable dependency tracking for your code by creating a go.mod file, run
the
- <a href="/ref/mod#go-mod-init"><code>go mod init</code> command</a>,
+ <a href="/ref/mod#go-mod-init"><code>go mod init</code></a> command,
giving it the name of the module your code will be in. The name is the
module's module path.</p>
<p>In actual development, the module path will typically be the repository
@@ -182,8 +182,7 @@ Hello, World!
<p>
The
<a href="/cmd/go/#hdr-Compile_and_run_Go_program"
- ><code>go run</code> command</a
- >
+ ><code>go run</code></a> command
is one of many <code>go</code> commands you'll use to get things done with
Go. Use the following command to get a list of the others:
</p>