From 3bce3fb7a5dad74bc09b6d5afe093a73c66243b8 Mon Sep 17 00:00:00 2001 From: Nick Fitzgerald Date: Fri, 22 Jun 2018 11:14:33 -0700 Subject: [PATCH] backend: Tidy up whitespace * Remove trailing space on line. * Ensure that there is a newline at the end of the file. --- crates/backend/src/ast.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/backend/src/ast.rs b/crates/backend/src/ast.rs index 740ad183..5ffad0f2 100644 --- a/crates/backend/src/ast.rs +++ b/crates/backend/src/ast.rs @@ -1125,7 +1125,7 @@ fn extract_doc_comments(attrs: &[syn::Attribute]) -> Vec { // We want to filter out any Puncts so just grab the Literals a.tts.clone().into_iter().filter_map(|t| match t { TokenTree::Literal(lit) => { - // this will always return the quoted string, we deal with + // this will always return the quoted string, we deal with // that in the cli when we read in the comments Some(lit.to_string()) }, @@ -1138,4 +1138,4 @@ fn extract_doc_comments(attrs: &[syn::Attribute]) -> Vec { }) //Fold up the [[String]] iter we created into Vec .fold(vec![], |mut acc, a| {acc.extend(a); acc}) -} \ No newline at end of file +}