Skip to content

Commit

Permalink
Fix typo.
Browse files Browse the repository at this point in the history
  • Loading branch information
tadd committed Jul 21, 2024
1 parent 9ffee0a commit 9545264
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lisp.c
Original file line number Diff line number Diff line change
Expand Up @@ -945,7 +945,7 @@ static Value builtin_define(Value *env, Value ident, Value expr)

static Value builtin_set(Value *env, Value ident, Value expr)
{
expect_type(TYPE_SYMBOL, ident, "set");
expect_type(TYPE_SYMBOL, ident, "set!");

Value found = alist_find(*env, ident);
if (found == Qnil)
Expand Down

0 comments on commit 9545264

Please sign in to comment.