fix: grammar mistakes

This commit is contained in:
Paul Waldmann
2018-11-18 05:03:43 +08:00
committed by Inanc Gumus
parent 9806e01284
commit 06891c57fc
27 changed files with 86 additions and 85 deletions

View File

@@ -5,7 +5,7 @@
## Why a package clause is used in a Go source-code file?
1. It's used for importing a package
2. It's used for letting Go know that the file belong to a package *CORRECT*
2. It's used for letting Go know that the file belongs to a package *CORRECT*
3. It's used for declaring a new function
> **1:** `import` statement does that.
@@ -47,4 +47,4 @@
> **4:** You can also call it like (assuming there are file1.go file2.go and file3.go in the same directory): go run file1.go file2.go file3.go
>
>
>