From d07aae1b684ee71ad88a03e21ff175a734133674 Mon Sep 17 00:00:00 2001 From: richard Date: Tue, 2 Aug 2022 13:04:17 -0400 Subject: [PATCH] Update go.html.markdown correcting a tiny mistake --- go.html.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.