diff --git a/doc/codelab/wiki/index.html b/doc/codelab/wiki/index.html index b8ae920584..898ea01d17 100644 --- a/doc/codelab/wiki/index.html +++ b/doc/codelab/wiki/index.html @@ -58,13 +58,15 @@ package main import ( "fmt" "io/ioutil" + "os" )

-Both fmt and ioutil are built-in packages that -we'll be using. Later, as we implement additional functionality, we will add -more packages to this import declaration. +We import the fmt, ioutil and os +packages from the Go standard library. Later, as we implement additional +functionality, we will add more packages to this import +declaration.

Data Structures

@@ -304,6 +306,7 @@ import ( "fmt" "http" "io/ioutil" + "os" )