Skip to content

Commit

Permalink
add trailing comma to list of parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
b1ek committed Dec 25, 2024
1 parent 411b92c commit c5c067f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modules/function/declaration_utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ use crate::utils::function_interface::FunctionInterface;
pub fn skip_function_body(
meta: &mut ParserMetadata,
declared_failable: bool,
returns_tok: &Option<Token>
returns_tok: &Option<Token>,
) -> Result<(usize, usize, bool), Failure> {
let index_begin = meta.get_index();
let mut is_failable = false;
Expand Down

0 comments on commit c5c067f

Please sign in to comment.