diff options
| author | Esteban Küber <esteban@kuber.com.ar> | 2018-09-05 07:33:29 -0700 |
|---|---|---|
| committer | Esteban Küber <esteban@kuber.com.ar> | 2018-09-05 07:33:29 -0700 |
| commit | 3192d3dc0c4417a6e360018b341c07d32f3f3d7f (patch) | |
| tree | 673b98479ba88547d4d275db02b00446f6ef849c /src/test/ui/parser | |
| parent | b2d2d837235d0b06e56bb3191aff7ae358ac6018 (diff) | |
| download | rust-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.rs | 2 | ||||
| -rw-r--r-- | src/test/ui/parser/unclosed-braces.stderr | 2 |
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 |
