Minor grammar and typo fixes for 2.0, 2.1 and 2.2

This commit is contained in:
Anchor
2014-08-26 18:10:03 -07:00
parent cdaf20eb7f
commit 3efe5b8e43
3 changed files with 73 additions and 75 deletions

View File

@@ -1,6 +1,6 @@
# 2 Go basic knowledge
Go is a compiled system programming language, and it belongs to the C-family. However, its compilation speed is much faster than other C-family languages. It has only 25 keywords, even less than 26 English letters! Let's take a look at these keywords before we get started.
Go is a compiled system programming language, and it belongs to the C-family. However, its compilation speed is much faster than other C-family languages. It has only 25 keywords..., even less than 26 English letters! Let's take a look at these keywords before we get started.
break default func interface select
case defer go map struct
@@ -8,10 +8,10 @@ Go is a compiled system programming language, and it belongs to the C-family. Ho
const fallthrough if range type
continue for import return var
In this chapter, I'm going to teach you some basic Go knowledge. You will find how concise the Go programming language is, and the beautiful design of the language. Programming can be very fun in Go. After we complete this chapter, you'll be familiar with the above keywords.
In this chapter, I'm going to teach you some basic Go knowledge. You will find out how concise the Go programming language is, and the beautiful design of the language. Programming can be very fun in Go. After we complete this chapter, you'll be familiar with the above keywords.
## Links
- [Directory](preface.md)
- Previous chapter: [Chapter 1 Summary](01.5.md)
- Next section: ["Hello, Go"](02.1.md)
- Next section: ["Hello, Go"](02.1.md)