Skip to content

Commit

Permalink
Add missing semicolon to warn!
Browse files Browse the repository at this point in the history
  • Loading branch information
doonv committed Apr 26, 2024
1 parent e58532a commit 4afc25a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/builtin_parser/runner/environment.rs
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,7 @@ impl Environment {
) -> &mut Self {
let name = name.into();
if self.variables.contains_key(&name) {
warn!("Function {name} declared twice.")
warn!("Function {name} declared twice.");
}
self.variables
.insert(name, Variable::Function(function.into_function()));
Expand Down

0 comments on commit 4afc25a

Please sign in to comment.