Skip to content

Commit b686e8c

Browse files
committed
resolve changkun#7, 补充丢失的分号
1 parent dea0988 commit b686e8c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040

4141
笔者感谢以下读者指出本书中出现的错误:
4242

43-
[Recolic Keghart](https://www.gitbook.com/@recolic), [sinomiko](https://www.gitbook.com/@sinomiko), [Wang Zhenhua](https://www.gitbook.com/@jackwish), [asm warrior](https://www.gitbook.com/@asmwarrior), [garicc](https://www.gitbook.com/@ihpy), [Wenhan Jiang](https://www.gitbook.com/@jiangwenhan), [liang xiao](https://www.gitbook.com/@liangx8), [slivermeteor](https://github.com/slivermeteor)
43+
[Recolic Keghart](https://www.gitbook.com/@recolic), [sinomiko](https://www.gitbook.com/@sinomiko), [Wang Zhenhua](https://www.gitbook.com/@jackwish), [asm warrior](https://www.gitbook.com/@asmwarrior), [garicc](https://www.gitbook.com/@ihpy), [Wenhan Jiang](https://www.gitbook.com/@jiangwenhan), [liang xiao](https://www.gitbook.com/@liangx8), [slivermeteor](https://github.com/slivermeteor), [inkedawn](https://github.com/inkedawn)
4444

4545
## 赞助
4646

book/02-usability.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -737,7 +737,7 @@ C++ 17 中将变长参数这种特性进一步带给了表达式,考虑下面
737737
#include <iostream>
738738
template<typename ... T>
739739
auto sum(T ... t) {
740-
return (t + ...)
740+
return (t + ...);
741741
}
742742
int main() {
743743
std::cout << sum(1, 2, 3, 4, 5, 6, 7, 8, 9, 10) << std::endl;

0 commit comments

Comments
 (0)