aboutsummaryrefslogtreecommitdiff
path: root/_content/doc/tutorial/getting-started.html
diff options
context:
space:
mode:
Diffstat (limited to '_content/doc/tutorial/getting-started.html')
-rw-r--r--_content/doc/tutorial/getting-started.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/_content/doc/tutorial/getting-started.html b/_content/doc/tutorial/getting-started.html
index 2946f272..6ca9e43c 100644
--- a/_content/doc/tutorial/getting-started.html
+++ b/_content/doc/tutorial/getting-started.html
@@ -127,11 +127,11 @@ go: creating new go.mod: module example/hello
</li>
<li>
- In your text editor, create a file hello.go in which to write your code.
+ <p>In your text editor, create a file hello.go in which to write your code.</p>
</li>
<li>
- Paste the following code into your hello.go file and save the file.
+ <p>Paste the following code into your hello.go file and save the file.</p>
<pre>
package main
@@ -170,7 +170,7 @@ func main() {
</li>
<li>
- Run your code to see the greeting.
+ <p>Run your code to see the greeting.</p>
<pre>
$ go run .