From 0cb5d25bfbbffd2cd01da02c3f23c087524a0960 Mon Sep 17 00:00:00 2001 From: LiAuTraver Date: Wed, 9 Oct 2024 20:45:11 +0800 Subject: [PATCH] remove redundant comments --- ch2/ch2-04.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ch2/ch2-04.md b/ch2/ch2-04.md index 32d17d0..4851f9f 100644 --- a/ch2/ch2-04.md +++ b/ch2/ch2-04.md @@ -35,7 +35,7 @@ x, y = y, x a[i], a[j] = a[j], a[i] ``` -或者是计算两个整数值的的最大公约数(GCD)(译注:GCD不是那个敏感字,而是greatest common divisor的缩写,欧几里德的GCD是最早的非平凡算法): +或者是计算两个整数值的的最大公约数(GCD)(译注:Greatest Common Divisor的缩写,欧几里德的GCD是最早的非平凡算法): ```Go func gcd(x, y int) int { @@ -58,7 +58,7 @@ func fib(n int) int { } ``` -元组赋值也可以使一系列琐碎赋值更加紧凑(译注: 特别是在for循环的初始化部分), +元组赋值也可以使一系列琐碎赋值更加紧凑(译注: 特别是在for循环的初始化部分): ```Go i, j, k = 2, 3, 5