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 +}