Fix misindent and comment text spacing on Procedural Macros page

This commit is contained in:
nabijaczleweli 2018-02-17 07:23:12 +01:00
parent 5c732161df
commit cd6fa02abe
No known key found for this signature in database
GPG Key ID: BCFD0B018D2658F1
1 changed files with 2 additions and 2 deletions

View File

@ -267,8 +267,8 @@ fn impl_hello_world(ast: &syn::DeriveInput) -> quote::Tokens {
}
}
} else {
//Nope. This is an Enum. We cannot handle these!
panic!("#[derive(HelloWorld)] is only defined for structs, not for enums!");
// Nope. This is an Enum. We cannot handle these!
panic!("#[derive(HelloWorld)] is only defined for structs, not for enums!");
}
}
```