diff --git a/doc/go_tutorial.html b/doc/go_tutorial.html index 7eb09b5b4b6..b16f3201783 100644 --- a/doc/go_tutorial.html +++ b/doc/go_tutorial.html @@ -650,8 +650,12 @@ We can now use our new package: 21 }

-The ''./'' in the import of ''./file'' tells the compiler to use our own package rather than -something from the directory of installed packages. +The ''./'' in the import of ''./file'' tells the +compiler to use the ''file'' package in the current directory +rather than something from the directory of installed packages. +

+

+You must compile ''file.go'' before any package that imports it.

Finally we can run the program: