fix(ch03-05): 修改从循环返回一节的代码片段

将译文中的代码修改成与原文一致,不过个人感觉不影响学习理解,可以无视。
This commit is contained in:
shengurun 2019-10-08 15:54:55 +08:00
parent c6606efcfa
commit a27ef17e36

View File

@ -262,7 +262,7 @@ fn main() {
}
};
assert_eq!(result, 20);
println!("The result is {}", result);
}
```