summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorMarcel Ribeiro Dantas <ribeirodantasdm@gmail.com>2022-08-03 03:19:23 +0100
committerGitHub <noreply@github.com>2022-08-03 03:19:23 +0100
commitac13c3f261252548a59d64b69ef30188fa9cdd5e (patch)
tree9eea04dba3e8de09c123813ead6784fdc975b7fd
parentda4c77d05b43b0f2384f58701e2fc667571c1bbf (diff)
parentd07aae1b684ee71ad88a03e21ff175a734133674 (diff)
Merge pull request #4476 from finickydesert/patch-1
[go/en] fix typo
-rw-r--r--go.html.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/go.html.markdown b/go.html.markdown
index 39c8ac74..c040b3ee 100644
--- a/go.html.markdown
+++ b/go.html.markdown
@@ -46,7 +46,7 @@ package main
import (
"fmt" // A package in the Go standard library.
"io/ioutil" // Implements some I/O utility functions.
- m "math" // Math library with local alias m.
+ "math" // Math library with local alias m.
"net/http" // Yes, a web server!
"os" // OS functions like working with the file system
"strconv" // String conversions.