Correct spelling (#4152)

This commit is contained in:
Edward Betts
2021-11-25 17:11:20 +00:00
committed by GitHub
parent e06df124ca
commit 3e93ae8af4
11 changed files with 11 additions and 11 deletions

View File

@ -132,7 +132,7 @@ mod tests {
match spec {
NamedType::Optional(_, _) => {}
_ => panic!("optional flag didn't parse succesfully"),
_ => panic!("optional flag didn't parse successfully"),
}
}
}

View File

@ -901,7 +901,7 @@ fn parse_arg(
return parse_dollar_expr(lite_arg, scope);
}
// before anything else, try to see if this is a number in paranthesis
// before anything else, try to see if this is a number in parenthesis
if lite_arg.item.starts_with('(') {
return parse_full_column_path(lite_arg, scope);
}