CnTransGroup / EffectiveModernCppChinese

《Effective Modern C++》- 完成翻译

Home Page:https://cntransgroup.github.io/EffectiveModernCppChinese/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Item2 抄写错误

zgjsxx opened this issue · comments

这里是原版英文中的第二节的文字:
the type specifier is const auto. And here,

const auto& rx = x;

这里是翻译后的文字
类型说明符是const auto。另一个:

const auto & rx=cx;

可以看到原版是const auto& rx = x;,翻译后是const auto & rx=cx
这里抄写错误,建议修改