]> git.lizzy.rs Git - rust.git/commitdiff
Rollup merge of #23862 - jviereck:fix_23713_v2, r=steveklabnik
authorManish Goregaokar <manishsmail@gmail.com>
Tue, 31 Mar 2015 03:34:38 +0000 (09:04 +0530)
committerManish Goregaokar <manishsmail@gmail.com>
Tue, 31 Mar 2015 03:34:38 +0000 (09:04 +0530)
Based on the comment from @apasel422  in https://github.com/rust-lang/rust/pull/23791#issuecomment-87095298.
Where @apasel422 proposed
```
Moves the value out of the option if it is `Some`, or panics if it is `None`.
```
I include in this PR the version
```
Moves the value `v` out of the `Option` if it is `Some(v)`, or panics if it is `None`.
```
which
- is a little bit more precise about what value is actually returned
- uses `Option` over just "option" in the part `out of the [Option]

r? @steveklabnik, @apasel422


Trivial merge