1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-06 23:06:49 +02:00

Merge pull request #4476 from finickydesert/patch-1

[go/en] fix typo
This commit is contained in:
Marcel Ribeiro Dantas
2022-08-03 03:19:23 +01:00
committed by GitHub

View File

@@ -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.