diff options
| -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. | 
