From 08558182f5c3cf5e2296e685ad68dbef025911a9 Mon Sep 17 00:00:00 2001 From: Tavis <5178311+tavislikedavis@users.noreply.github.com> Date: Thu, 24 Aug 2023 23:13:00 -0500 Subject: Fix go math library alias (#4702) Fix go math library alias --- go.html.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go.html.markdown b/go.html.markdown index fe69ed43..9dbfefaa 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. - "math" // Math library with local alias m. + 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. -- cgit v1.2.3