File tree 3 files changed +3
-3
lines changed
3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -206,7 +206,7 @@ <h1 id="option"><a class="header" href="#option"><code>Option</code></a></h1>
206
206
println!("{:?} unwraps to {:?}", optional_float, optional_float.unwrap());
207
207
208
208
// Unwrapping a `None` variant will `panic!`
209
- // `None`をアンラップしようとすると`panic!`る
209
+ // `None`をアンラップしようとすると`panic!`
210
210
println!("{:?} unwraps to {:?}", none, none.unwrap());
211
211
}</ code > </ pre > </ pre >
212
212
Original file line number Diff line number Diff line change @@ -33,6 +33,6 @@ fn main() {
33
33
// `Some`をアンラップすると中の値を取得できる。
34
34
println ! ( "{:?} unwraps to {:?}" , optional_float, optional_float. unwrap( ) ) ;
35
35
36
- // `None`をアンラップしようとすると`panic!`る
36
+ // `None`をアンラップしようとすると`panic!`
37
37
println ! ( "{:?} unwraps to {:?}" , none, none. unwrap( ) ) ;
38
38
}
Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ fn main() {
62
62
println!("{:?} unwraps to {:?}", optional_float, optional_float.unwrap());
63
63
64
64
// Unwrapping a `None` variant will `panic!`
65
- // `None`をアンラップしようとすると`panic!`る
65
+ // `None`をアンラップしようとすると`panic!`
66
66
println!("{:?} unwraps to {:?}", none, none.unwrap());
67
67
}
68
68
```
You can’t perform that action at this time.
0 commit comments