diff options
author | richard <finickydesert@users.noreply.github.com> | 2022-08-02 13:04:17 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-02 13:04:17 -0400 |
commit | d07aae1b684ee71ad88a03e21ff175a734133674 (patch) | |
tree | 9eea04dba3e8de09c123813ead6784fdc975b7fd /go.html.markdown | |
parent | da4c77d05b43b0f2384f58701e2fc667571c1bbf (diff) |
Update go.html.markdown
correcting a tiny mistake
Diffstat (limited to 'go.html.markdown')
-rw-r--r-- | go.html.markdown | 2 |
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. |