about summary refs log tree commit diff
path: root/src/test/ui/missing
diff options
context:
space:
mode:
authorEsteban Küber <esteban@kuber.com.ar>2019-10-28 11:08:53 -0700
committerEsteban Küber <esteban@kuber.com.ar>2019-11-06 17:26:20 -0800
commit52e8ec14322e1f0c2cba5fc3c54e876e58a5ddee (patch)
tree49605c0871e19e60624a1915e0f6921f8c16d95a /src/test/ui/missing
parent3f0e16473de5ec010f44290a8c3ea1d90e0ad7a2 (diff)
downloadrust-52e8ec14322e1f0c2cba5fc3c54e876e58a5ddee.tar.gz
rust-52e8ec14322e1f0c2cba5fc3c54e876e58a5ddee.zip
Remove "here" from "expected one of X here"
Diffstat (limited to 'src/test/ui/missing')
-rw-r--r--src/test/ui/missing/missing-comma-in-match.fixed2
-rw-r--r--src/test/ui/missing/missing-comma-in-match.rs2
-rw-r--r--src/test/ui/missing/missing-comma-in-match.stderr2
3 files changed, 3 insertions, 3 deletions
diff --git a/src/test/ui/missing/missing-comma-in-match.fixed b/src/test/ui/missing/missing-comma-in-match.fixed
index de1b9506af9..f091082f35f 100644
--- a/src/test/ui/missing/missing-comma-in-match.fixed
+++ b/src/test/ui/missing/missing-comma-in-match.fixed
@@ -5,7 +5,7 @@ fn main() {
         &None => 1,
         &Some(2) => { 3 }
         //~^ ERROR expected one of `,`, `.`, `?`, `}`, or an operator, found `=>`
-        //~| NOTE expected one of `,`, `.`, `?`, `}`, or an operator here
+        //~| NOTE expected one of `,`, `.`, `?`, `}`, or an operator
         _ => 2
     };
 }
diff --git a/src/test/ui/missing/missing-comma-in-match.rs b/src/test/ui/missing/missing-comma-in-match.rs
index d7d16155cf2..54dab4e9750 100644
--- a/src/test/ui/missing/missing-comma-in-match.rs
+++ b/src/test/ui/missing/missing-comma-in-match.rs
@@ -5,7 +5,7 @@ fn main() {
         &None => 1
         &Some(2) => { 3 }
         //~^ ERROR expected one of `,`, `.`, `?`, `}`, or an operator, found `=>`
-        //~| NOTE expected one of `,`, `.`, `?`, `}`, or an operator here
+        //~| NOTE expected one of `,`, `.`, `?`, `}`, or an operator
         _ => 2
     };
 }
diff --git a/src/test/ui/missing/missing-comma-in-match.stderr b/src/test/ui/missing/missing-comma-in-match.stderr
index ae46516f8d1..fe210f697c4 100644
--- a/src/test/ui/missing/missing-comma-in-match.stderr
+++ b/src/test/ui/missing/missing-comma-in-match.stderr
@@ -4,7 +4,7 @@ error: expected one of `,`, `.`, `?`, `}`, or an operator, found `=>`
 LL |         &None => 1
    |                   - help: missing a comma here to end this `match` arm
 LL |         &Some(2) => { 3 }
-   |                  ^^ expected one of `,`, `.`, `?`, `}`, or an operator here
+   |                  ^^ expected one of `,`, `.`, `?`, `}`, or an operator
 
 error: aborting due to previous error