diff --git a/core/codegen/tests/ui-fail-stable/async-entry.stderr b/core/codegen/tests/ui-fail-stable/async-entry.stderr index 301ffcec..00ea9147 100644 --- a/core/codegen/tests/ui-fail-stable/async-entry.stderr +++ b/core/codegen/tests/ui-fail-stable/async-entry.stderr @@ -134,7 +134,7 @@ error[E0308]: mismatched types | | 25 | | rocket::build() 26 | | } - | | ^- help: try adding a semicolon: `;` + | | ^- help: consider using a semicolon here: `;` | |_____| | expected `()`, found struct `Rocket` | diff --git a/core/codegen/tests/ui-fail-stable/from_form.stderr b/core/codegen/tests/ui-fail-stable/from_form.stderr index d4187f17..0724589d 100644 --- a/core/codegen/tests/ui-fail-stable/from_form.stderr +++ b/core/codegen/tests/ui-fail-stable/from_form.stderr @@ -399,11 +399,11 @@ error[E0308]: mismatched types --> $DIR/from_form.rs:144:24 | 144 | #[field(validate = 123)] - | -------- ^^^ expected enum `std::result::Result`, found integer + | -------- ^^^ expected enum `Result`, found integer | | | expected due to this | - = note: expected enum `std::result::Result<(), Errors<'_>>` + = note: expected enum `Result<(), Errors<'_>>` found type `{integer}` error[E0308]: mismatched types diff --git a/core/codegen/tests/ui-fail-stable/responder-types.stderr b/core/codegen/tests/ui-fail-stable/responder-types.stderr index 3ef3c6db..a71752a2 100644 --- a/core/codegen/tests/ui-fail-stable/responder-types.stderr +++ b/core/codegen/tests/ui-fail-stable/responder-types.stderr @@ -53,4 +53,4 @@ error[E0277]: the trait bound `usize: Responder<'_, '_>` is not satisfied 28 | fn foo() -> usize { 0 } | ^^^^^ the trait `Responder<'_, '_>` is not implemented for `usize` | - = note: required by `route::handler::, Status, rocket::Data>>::from` + = note: required by `route::handler::, Status, rocket::Data>>::from` diff --git a/core/codegen/tests/ui-fail-stable/typed-uri-bad-type.stderr b/core/codegen/tests/ui-fail-stable/typed-uri-bad-type.stderr index 7af18958..07202503 100644 --- a/core/codegen/tests/ui-fail-stable/typed-uri-bad-type.stderr +++ b/core/codegen/tests/ui-fail-stable/typed-uri-bad-type.stderr @@ -55,11 +55,11 @@ error[E0277]: the trait bound `i32: FromUriParam>` for `std::option::Option` = note: required by `from_uri_param` -error[E0277]: the trait bound `std::string::String: FromUriParam>` is not satisfied +error[E0277]: the trait bound `std::string::String: FromUriParam>` is not satisfied --> $DIR/typed-uri-bad-type.rs:56:43 | 56 | uri!(optionals: id = Some(10), name = Ok("bob".into())); - | ^^ the trait `FromUriParam>` is not implemented for `std::string::String` + | ^^ the trait `FromUriParam>` is not implemented for `std::string::String` | = help: the following implementations were found: > @@ -67,7 +67,7 @@ error[E0277]: the trait bound `std::string::String: FromUriParam> > and 2 others - = note: required because of the requirements on the impl of `FromUriParam>` for `std::result::Result` + = note: required because of the requirements on the impl of `FromUriParam>` for `Result` = note: required by `from_uri_param` error[E0277]: the trait bound `isize: FromUriParam` is not satisfied