[Typo] Fix multiple wrong single and double quotation marks between 04.6 to 06.9

This commit is contained in:
dbarobin
2015-08-06 16:24:05 +08:00
parent c5cf631c5a
commit 83e030ac39
5 changed files with 9 additions and 9 deletions

View File

@@ -86,10 +86,10 @@ i := 0
for { //since there are no checks, this is an infinite loop
if i >= 3 { break }
//break out of this for loop when this condition is met
fmt.Println(Value of i is:, i)
fmt.Println("Value of i is:", i)
i++;
}
fmt.Println(A statement just after for loop.)
fmt.Println("A statement just after for loop.")
```
2.
@@ -97,7 +97,7 @@ fmt.Println(“A statement just after for loop.”)
```go
for i := 0; i<7 ; i++ {
if i%2 == 0 { continue }
fmt.Println(Odd:, i)
fmt.Println("Odd:", i)
}
```