From c81135e50fdfa11a7329734555cfa6e7d1d2c7cc Mon Sep 17 00:00:00 2001 From: Anchor Date: Thu, 4 Sep 2014 23:38:31 -0700 Subject: [PATCH] Fixed a few typos for 02.8.md --- en/eBook/02.8.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/en/eBook/02.8.md b/en/eBook/02.8.md index 4ea20f8f..b1306758 100644 --- a/en/eBook/02.8.md +++ b/en/eBook/02.8.md @@ -17,10 +17,10 @@ In this chapter, we mainly introduced the 25 Go keywords. Let's review what they - `select` is used to switch over multiple channels for communication. - `interface` is used to define interfaces. - `struct` is used to define special customized types. -- `break`, `case`, `continue`, `for`, `fallthrough`, `else`, `if`, `switch`, `goto`, `default` were introduced in section 2.3. +- `break`, `case`, `continue`, `for`, `fallthrough`, `else`, `if`, `switch`, `goto` and `default` were introduced in section 2.3. - `chan` is the type of channel for communication among goroutines. - `type` is used to define customized types. -- `map` is used to define map which is like hash table in others languages. +- `map` is used to define map which is similar to hash tables in other languages. - `range` is used for reading data from `slice`, `map` and `channel`. If you understand how to use these 25 keywords, you've learned a lot of Go already. @@ -29,4 +29,4 @@ If you understand how to use these 25 keywords, you've learned a lot of Go alrea - [Directory](preface.md) - Previous section: [Concurrency](02.7.md) -- Next chapter: [Web foundation](03.0.md) \ No newline at end of file +- Next chapter: [Web foundation](03.0.md)