diff options
| author | Vitaly _Vi Shukela <vi0oss@gmail.com> | 2018-09-17 20:13:08 +0300 |
|---|---|---|
| committer | Vitaly _Vi Shukela <vi0oss@gmail.com> | 2018-09-17 20:26:05 +0300 |
| commit | d0790c490a2233d04375072123e70ed158eb3848 (patch) | |
| tree | a02ac12a5038ff424213e53e53468da50b72094e /src/libsyntax/parse | |
| parent | 15982fe369e87d43332556f87f66f7c0e5841830 (diff) | |
| download | rust-d0790c490a2233d04375072123e70ed158eb3848.tar.gz rust-d0790c490a2233d04375072123e70ed158eb3848.zip | |
Whitespace fix again.
Diffstat (limited to 'src/libsyntax/parse')
| -rw-r--r-- | src/libsyntax/parse/parser.rs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/libsyntax/parse/parser.rs b/src/libsyntax/parse/parser.rs index 18287189539..6ec1ad969ee 100644 --- a/src/libsyntax/parse/parser.rs +++ b/src/libsyntax/parse/parser.rs @@ -3883,11 +3883,11 @@ impl<'a> Parser<'a> { // If the struct looks otherwise well formed, recover and continue. if let Some(sp) = comma_sp { err.span_suggestion_short_with_applicability( - sp, - "remove this comma", - String::new(), - Applicability::MachineApplicable, - ); + sp, + "remove this comma", + String::new(), + Applicability::MachineApplicable, + ); } err.emit(); break; |
