File tree 2 files changed +8
-8
lines changed
2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -65,7 +65,7 @@ declare_clippy_lint! {
65
65
///
66
66
/// **Why is this bad?** `result.unwrap()` will let the thread panic on `Err`
67
67
/// values. Normally, you want to implement more sophisticated error handling,
68
- /// and propagate errors upwards with `try!` .
68
+ /// and propagate errors upwards with `?` operator .
69
69
///
70
70
/// Even if you want to panic on errors, not all `Error`s implement good
71
71
/// messages on display. Therefore, it may be beneficial to look at the places
@@ -127,7 +127,7 @@ declare_clippy_lint! {
127
127
///
128
128
/// **Why is this bad?** `result.expect()` will let the thread panic on `Err`
129
129
/// values. Normally, you want to implement more sophisticated error handling,
130
- /// and propagate errors upwards with `try!` .
130
+ /// and propagate errors upwards with `?` operator .
131
131
///
132
132
/// **Known problems:** None.
133
133
///
Original file line number Diff line number Diff line change @@ -15,18 +15,18 @@ declare_clippy_lint! {
15
15
///
16
16
/// **Example:**
17
17
/// ```ignore
18
- /// for result in iter {
19
- /// if let Some(bench ) = try!(result) .parse().ok() {
20
- /// vec.push(bench )
18
+ /// for i in iter {
19
+ /// if let Some(value ) = i .parse().ok() {
20
+ /// vec.push(value )
21
21
/// }
22
22
/// }
23
23
/// ```
24
24
/// Could be written:
25
25
///
26
26
/// ```ignore
27
- /// for result in iter {
28
- /// if let Ok(bench ) = try!(result) .parse() {
29
- /// vec.push(bench )
27
+ /// for i in iter {
28
+ /// if let Ok(value ) = i .parse() {
29
+ /// vec.push(value )
30
30
/// }
31
31
/// }
32
32
/// ```
You can’t perform that action at this time.
0 commit comments