We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 82bf81c + 081b0eb commit bc93de7Copy full SHA for bc93de7
src/error/option_unwrap.md
@@ -64,7 +64,7 @@ fn give_commoner(gift: Option<&str>) {
64
// 温室育ちのお姫様はヘビを見ると`panic`します。
65
fn give_princess(gift: Option<&str>) {
66
// `unwrap` returns a `panic` when it receives a `None`.
67
- // `unwrap`を使用すると値が`None`だった際に`panic`を返します。。
+ // `unwrap`を使用すると値が`None`だった際に`panic`を返します。
68
let inside = gift.unwrap();
69
if inside == "snake" { panic!("AAAaaaaa!!!!"); }
70
0 commit comments