From 53cf427f4f008e0481c274febe17c2f6103477be Mon Sep 17 00:00:00 2001 From: Ben S Date: Wed, 22 Jul 2015 21:23:19 +0100 Subject: [PATCH] Macro variables shouldn't use spaces like this --- Contents/Clippings/Rust.rs/Test macro | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Contents/Clippings/Rust.rs/Test macro b/Contents/Clippings/Rust.rs/Test macro index faca5e7..c127780 100644 --- a/Contents/Clippings/Rust.rs/Test macro +++ b/Contents/Clippings/Rust.rs/Test macro @@ -1,8 +1,8 @@ #indent#macro_rules! #placeholderstart#name#placeholderend# { - ($name: ident: $input: expr => $result: expr) => { + ($name:ident: $input:expr => $result:expr) => { #[test] fn $name() { - assert_eq!($input, $result) + assert_eq!($input, $result); } }; } \ No newline at end of file