Skip to content

Commit

Permalink
merge: Merge pull request #13 from botamochi0x12/error-message-for-un…
Browse files Browse the repository at this point in the history
…known-operators

fix: Fix an error on a function evocation by a missing parameter for the `error` function
  • Loading branch information
botamochi0x12 authored Dec 16, 2024
2 parents 38684a0 + 24dcf41 commit b33d79c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resolveTruthinessChain.m
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
else
error( ...
"UnsupportedOperatorError: " ...
+ "`%s` is not spported. Use `add` or `or`.", ...
+ "`%s` is not supported. Use `and` or `or`.", ...
func2str(op));
end
end
Expand Down

0 comments on commit b33d79c

Please sign in to comment.