about summary refs log tree commit diff
path: root/tests/ui/self
diff options
context:
space:
mode:
authorEsteban Küber <esteban@kuber.com.ar>2023-10-16 18:25:11 +0000
committerEsteban Küber <esteban@kuber.com.ar>2023-10-17 17:33:55 +0000
commit890e92feedcfe942cea8ffda2929d9d4ecf8ab5f (patch)
treee85271a13254f7f724d3cb6a019f57ddeadbbff8 /tests/ui/self
parent6cf01fcf1ec24142919d92035b8531c4ff1deaca (diff)
downloadrust-890e92feedcfe942cea8ffda2929d9d4ecf8ab5f.tar.gz
rust-890e92feedcfe942cea8ffda2929d9d4ecf8ab5f.zip
Unify suggestion wording
Diffstat (limited to 'tests/ui/self')
-rw-r--r--tests/ui/self/self-impl.stderr4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/ui/self/self-impl.stderr b/tests/ui/self/self-impl.stderr
index 36372b644d6..18ffd15427f 100644
--- a/tests/ui/self/self-impl.stderr
+++ b/tests/ui/self/self-impl.stderr
@@ -2,13 +2,13 @@ error[E0223]: ambiguous associated type
   --> $DIR/self-impl.rs:23:16
    |
 LL |         let _: <Self>::Baz = true;
-   |                ^^^^^^^^^^^ help: use the fully-qualified path: `<Bar as Foo>::Baz`
+   |                ^^^^^^^^^^^ help: use fully-qualified syntax: `<Bar as Foo>::Baz`
 
 error[E0223]: ambiguous associated type
   --> $DIR/self-impl.rs:25:16
    |
 LL |         let _: Self::Baz = true;
-   |                ^^^^^^^^^ help: use the fully-qualified path: `<Bar as Foo>::Baz`
+   |                ^^^^^^^^^ help: use fully-qualified syntax: `<Bar as Foo>::Baz`
 
 error: aborting due to 2 previous errors