diff options
| author | Tavis <5178311+tavislikedavis@users.noreply.github.com> | 2023-08-24 23:13:00 -0500 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-08-25 12:13:00 +0800 | 
| commit | 08558182f5c3cf5e2296e685ad68dbef025911a9 (patch) | |
| tree | 0e1fbac84082e66ff90c1e0041a18e3192ddd4b0 | |
| parent | f6c70b2716371655c5dfc157cfe848b2c9df2ba9 (diff) | |
Fix go math library alias (#4702)
Fix go math library alias
| -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 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. | 
