Skip to content

Commit 6869239

Browse files
authored
Merge pull request #229 from LiAuTraver/master
Remove redundant comments
2 parents 56bbafb + 0cb5d25 commit 6869239

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ch2/ch2-04.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ x, y = y, x
3535
a[i], a[j] = a[j], a[i]
3636
```
3737

38-
或者是计算两个整数值的的最大公约数(GCD)(译注:GCD不是那个敏感字,而是greatest common divisor的缩写,欧几里德的GCD是最早的非平凡算法):
38+
或者是计算两个整数值的的最大公约数(GCD)(译注:Greatest Common Divisor的缩写,欧几里德的GCD是最早的非平凡算法):
3939

4040
```Go
4141
func gcd(x, y int) int {
@@ -58,7 +58,7 @@ func fib(n int) int {
5858
}
5959
```
6060

61-
元组赋值也可以使一系列琐碎赋值更加紧凑(译注: 特别是在for循环的初始化部分)
61+
元组赋值也可以使一系列琐碎赋值更加紧凑(译注: 特别是在for循环的初始化部分):
6262

6363
```Go
6464
i, j, k = 2, 3, 5

0 commit comments

Comments
 (0)