about summary refs log tree commit diff
path: root/src/test/ui/parser
diff options
context:
space:
mode:
authorEsteban Küber <esteban@kuber.com.ar>2018-09-05 07:33:29 -0700
committerEsteban Küber <esteban@kuber.com.ar>2018-09-05 07:33:29 -0700
commit3192d3dc0c4417a6e360018b341c07d32f3f3d7f (patch)
tree673b98479ba88547d4d275db02b00446f6ef849c /src/test/ui/parser
parentb2d2d837235d0b06e56bb3191aff7ae358ac6018 (diff)
downloadrust-3192d3dc0c4417a6e360018b341c07d32f3f3d7f.tar.gz
rust-3192d3dc0c4417a6e360018b341c07d32f3f3d7f.zip
Change wording of unclosed delimiter label
Diffstat (limited to 'src/test/ui/parser')
-rw-r--r--src/test/ui/parser/unclosed-braces.rs2
-rw-r--r--src/test/ui/parser/unclosed-braces.stderr2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/test/ui/parser/unclosed-braces.rs b/src/test/ui/parser/unclosed-braces.rs
index 64089447584..802133ae6b9 100644
--- a/src/test/ui/parser/unclosed-braces.rs
+++ b/src/test/ui/parser/unclosed-braces.rs
@@ -24,7 +24,7 @@ fn main() {
 //~^ NOTE un-closed delimiter
     {
         {
-        //~^ NOTE this might be the culprit...
+        //~^ NOTE this delimiter might not be properly closed...
             foo();
     }
     //~^ NOTE ...as it matches this but it has different indentation
diff --git a/src/test/ui/parser/unclosed-braces.stderr b/src/test/ui/parser/unclosed-braces.stderr
index 5d5ff24faa6..4f865bc9b39 100644
--- a/src/test/ui/parser/unclosed-braces.stderr
+++ b/src/test/ui/parser/unclosed-braces.stderr
@@ -5,7 +5,7 @@ LL | fn main() {
    |           - un-closed delimiter
 ...
 LL |         {
-   |         - this might be the culprit...
+   |         - this delimiter might not be properly closed...
 ...
 LL |     }
    |     - ...as it matches this but it has different indentation