about summary refs log tree commit diff
path: root/src/librustc_errors
diff options
context:
space:
mode:
authorV1shvesh <22243137+V1shvesh@users.noreply.github.com>2019-09-08 23:01:43 +0530
committerV1shvesh <22243137+V1shvesh@users.noreply.github.com>2019-09-08 23:01:43 +0530
commit7457ef858026d1858e9a36c7fad7a95773d0632d (patch)
treecaf856ab9547a35c5136c51ac571249a409de09f /src/librustc_errors
parentfc4375a895c899e937892c5666372cf14d35c6df (diff)
downloadrust-7457ef858026d1858e9a36c7fad7a95773d0632d.tar.gz
rust-7457ef858026d1858e9a36c7fad7a95773d0632d.zip
Dedent macro definition
Diffstat (limited to 'src/librustc_errors')
-rw-r--r--src/librustc_errors/lib.rs6
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 { "" }
+    };
 }