Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
JelteF committed Jun 15, 2024
1 parent 461db95 commit f0c2530
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/syn_compat.rs
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,10 @@ fn parse_meta_path(input: ParseStream) -> Result<Path> {
})
}

pub(crate) fn parse_meta_after_path(path: Path, input: ParseStream) -> Result<ParsedMeta> {
pub(crate) fn parse_meta_after_path(
path: Path,
input: ParseStream,
) -> Result<ParsedMeta> {
if input.peek(token::Paren) {
parse_meta_list_after_path(path, input).map(ParsedMeta::List)
} else if input.peek(Token![=]) {
Expand Down

0 comments on commit f0c2530

Please sign in to comment.