Skip to content

Commit

Permalink
Fix typo in Expression::Function (#309)
Browse files Browse the repository at this point in the history
Fixes a minor typo in `Expression::Function` doc comment.
  • Loading branch information
ssssobek authored Jul 13, 2024
1 parent 2c046d8 commit ef8564e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion full-moon/src/ast/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ pub enum Expression {
expression: Box<Expression>,
},

/// An anonymous function, such as `function() end)`
/// An anonymous function, such as `function() end`
#[display(fmt = "{}{}", "_0.0", "_0.1")]
Function(Box<(TokenReference, FunctionBody)>),

Expand Down

0 comments on commit ef8564e

Please sign in to comment.