Skip to content

Commit

Permalink
Auto merge of rust-lang#124398 - klensy:trailing-ws, r=compiler-errors
Browse files Browse the repository at this point in the history
tests: remove some trailing ws

Cleans one more case of trailing whitespace in tests.
  • Loading branch information
bors committed Apr 30, 2024
2 parents ec9ddc7 + a8e0bcb commit 4bee978
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion tests/ui/from_over_into.stderr
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ help: replace the `Into` implementation with `From<ExplicitPaths>`
LL ~ impl core::convert::From<crate::ExplicitPaths> for bool {
LL ~ fn from(mut val: crate::ExplicitPaths) -> Self {
LL ~ let in_closure = || val.0;
LL |
LL |
LL ~ val.0 = false;
LL ~ val.0
|
Expand Down
2 changes: 1 addition & 1 deletion tests/ui/let_and_return.stderr
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ LL | result
help: return the expression directly
|
LL ~
LL |
LL |
LL ~ (match self {
LL + E::A(x) => x,
LL + E::B(x) => x,
Expand Down
4 changes: 2 additions & 2 deletions tests/ui/manual_strip.stderr
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ LL ~ if let Some(<stripped>) = s.strip_prefix("ab") {
LL ~ str::to_string(<stripped>);
LL |
LL ~ <stripped>.to_string();
LL |
LL |
LL ~ str::to_string(<stripped>);
LL ~ <stripped>.to_string();
|
Expand All @@ -39,7 +39,7 @@ LL ~ if let Some(<stripped>) = s.strip_suffix("bc") {
LL ~ str::to_string(<stripped>);
LL |
LL ~ <stripped>.to_string();
LL |
LL |
LL ~ str::to_string(<stripped>);
LL ~ <stripped>.to_string();
|
Expand Down
2 changes: 1 addition & 1 deletion tests/ui/result_map_unit_fn_unfixable.stderr
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ LL | || do_nothing(value)
LL | || });
| ||______^- help: try: `if let Ok(value) = x.field { ... }`
| |______|
|
|

error: called `map(f)` on an `Result` value where `f` is a closure that returns the unit type `()`
--> tests/ui/result_map_unit_fn_unfixable.rs:37:5
Expand Down
2 changes: 1 addition & 1 deletion tests/ui/suspicious_doc_comments.stderr
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ LL | | ///! b
help: use an inner doc comment to document the parent module or crate
|
LL ~ //! a
LL |
LL |
LL ~ //! b
|

Expand Down

0 comments on commit 4bee978

Please sign in to comment.