about summary refs log tree commit diff
path: root/src/test/ui/parser
diff options
context:
space:
mode:
authorEsteban Kuber <esteban@kuber.com.ar>2021-09-10 07:30:58 +0000
committerEsteban Kuber <esteban@kuber.com.ar>2021-11-23 20:36:19 +0000
commitd68add9eccf2561380177d07d4e7b31433562a2b (patch)
treef678fe56e0858a55e25f6a725a684c49d45fbc04 /src/test/ui/parser
parent21224e6ee07b917f7996b27f05c57327f806a026 (diff)
downloadrust-d68add9eccf2561380177d07d4e7b31433562a2b.tar.gz
rust-d68add9eccf2561380177d07d4e7b31433562a2b.zip
review comment: plural of emoji is emoji
Diffstat (limited to 'src/test/ui/parser')
-rw-r--r--src/test/ui/parser/emoji-identifiers.rs12
-rw-r--r--src/test/ui/parser/emoji-identifiers.stderr12
2 files changed, 12 insertions, 12 deletions
diff --git a/src/test/ui/parser/emoji-identifiers.rs b/src/test/ui/parser/emoji-identifiers.rs
index e07e0573e75..ef18939bbb8 100644
--- a/src/test/ui/parser/emoji-identifiers.rs
+++ b/src/test/ui/parser/emoji-identifiers.rs
@@ -1,16 +1,16 @@
-struct ABig๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘งFamily; //~ ERROR identifiers cannot contain emojis
-struct ๐Ÿ‘€; //~ ERROR identifiers cannot contain emojis
+struct ABig๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘งFamily; //~ ERROR identifiers cannot contain emoji
+struct ๐Ÿ‘€; //~ ERROR identifiers cannot contain emoji
 impl ๐Ÿ‘€ {
-    fn full_of_โœจ() -> ๐Ÿ‘€ { //~ ERROR identifiers cannot contain emojis
+    fn full_of_โœจ() -> ๐Ÿ‘€ { //~ ERROR identifiers cannot contain emoji
         ๐Ÿ‘€
     }
 }
-fn i_like_to_๐Ÿ˜…_a_lot() -> ๐Ÿ‘€ { //~ ERROR identifiers cannot contain emojis
+fn i_like_to_๐Ÿ˜…_a_lot() -> ๐Ÿ‘€ { //~ ERROR identifiers cannot contain emoji
     ๐Ÿ‘€::full_ofโœจ() //~ ERROR no function or associated item named `full_ofโœจ` found for struct `๐Ÿ‘€`
-    //~^ ERROR identifiers cannot contain emojis
+    //~^ ERROR identifiers cannot contain emoji
 }
 fn main() {
     let _ = i_like_to_๐Ÿ˜„_a_lot() โž– 4; //~ ERROR cannot find function `i_like_to_๐Ÿ˜„_a_lot` in this scope
-    //~^ ERROR identifiers cannot contain emojis
+    //~^ ERROR identifiers cannot contain emoji
     //~| ERROR unknown start of token: \u{2796}
 }
diff --git a/src/test/ui/parser/emoji-identifiers.stderr b/src/test/ui/parser/emoji-identifiers.stderr
index a73681d9196..a69a9c542d6 100644
--- a/src/test/ui/parser/emoji-identifiers.stderr
+++ b/src/test/ui/parser/emoji-identifiers.stderr
@@ -18,25 +18,25 @@ LL | fn i_like_to_๐Ÿ˜…_a_lot() -> ๐Ÿ‘€ {
 LL |     let _ = i_like_to_๐Ÿ˜„_a_lot() โž– 4;
    |             ^^^^^^^^^^^^^^^^^^ help: a function with a similar name exists: `i_like_to_๐Ÿ˜…_a_lot`
 
-error: identifiers cannot contain emojis: `i_like_to_๐Ÿ˜„_a_lot`
+error: identifiers cannot contain emoji: `i_like_to_๐Ÿ˜„_a_lot`
   --> $DIR/emoji-identifiers.rs:13:13
    |
 LL |     let _ = i_like_to_๐Ÿ˜„_a_lot() โž– 4;
    |             ^^^^^^^^^^^^^^^^^^
 
-error: identifiers cannot contain emojis: `full_of_โœจ`
+error: identifiers cannot contain emoji: `full_of_โœจ`
   --> $DIR/emoji-identifiers.rs:4:8
    |
 LL |     fn full_of_โœจ() -> ๐Ÿ‘€ {
    |        ^^^^^^^^^^
 
-error: identifiers cannot contain emojis: `full_ofโœจ`
+error: identifiers cannot contain emoji: `full_ofโœจ`
   --> $DIR/emoji-identifiers.rs:9:8
    |
 LL |     ๐Ÿ‘€::full_ofโœจ()
    |         ^^^^^^^^^
 
-error: identifiers cannot contain emojis: `๐Ÿ‘€`
+error: identifiers cannot contain emoji: `๐Ÿ‘€`
   --> $DIR/emoji-identifiers.rs:2:8
    |
 LL | struct ๐Ÿ‘€;
@@ -53,13 +53,13 @@ LL | fn i_like_to_๐Ÿ˜…_a_lot() -> ๐Ÿ‘€ {
 LL |     ๐Ÿ‘€::full_ofโœจ()
    |     ^^
 
-error: identifiers cannot contain emojis: `i_like_to_๐Ÿ˜…_a_lot`
+error: identifiers cannot contain emoji: `i_like_to_๐Ÿ˜…_a_lot`
   --> $DIR/emoji-identifiers.rs:8:4
    |
 LL | fn i_like_to_๐Ÿ˜…_a_lot() -> ๐Ÿ‘€ {
    |    ^^^^^^^^^^^^^^^^^^
 
-error: identifiers cannot contain emojis: `ABig๐Ÿ‘ฉ๐Ÿ‘ฉ๐Ÿ‘ง๐Ÿ‘งFamily`
+error: identifiers cannot contain emoji: `ABig๐Ÿ‘ฉ๐Ÿ‘ฉ๐Ÿ‘ง๐Ÿ‘งFamily`
   --> $DIR/emoji-identifiers.rs:1:8
    |
 LL | struct ABig๐Ÿ‘ฉ๐Ÿ‘ฉ๐Ÿ‘ง๐Ÿ‘งFamily;