diff options
| author | V1shvesh <22243137+V1shvesh@users.noreply.github.com> | 2019-09-08 23:01:43 +0530 |
|---|---|---|
| committer | V1shvesh <22243137+V1shvesh@users.noreply.github.com> | 2019-09-08 23:01:43 +0530 |
| commit | 7457ef858026d1858e9a36c7fad7a95773d0632d (patch) | |
| tree | caf856ab9547a35c5136c51ac571249a409de09f /src/librustc_errors | |
| parent | fc4375a895c899e937892c5666372cf14d35c6df (diff) | |
| download | rust-7457ef858026d1858e9a36c7fad7a95773d0632d.tar.gz rust-7457ef858026d1858e9a36c7fad7a95773d0632d.zip | |
Dedent macro definition
Diffstat (limited to 'src/librustc_errors')
| -rw-r--r-- | src/librustc_errors/lib.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/librustc_errors/lib.rs b/src/librustc_errors/lib.rs index 20338a33ef6..c1fba416d64 100644 --- a/src/librustc_errors/lib.rs +++ b/src/librustc_errors/lib.rs @@ -848,7 +848,7 @@ impl Level { #[macro_export] macro_rules! pluralise { - ($x:expr) => { - if $x != 1 { "s" } else { "" } - }; + ($x:expr) => { + if $x != 1 { "s" } else { "" } + }; } |
