Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
Fixes typo exptected -> expected in two locations in src/parser/expression.lisp.
  • Loading branch information
xskoak authored and stylewarning committed Feb 29, 2024
1 parent c520ae3 commit 01a2673
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/parser/expression.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -1028,7 +1028,7 @@ Rebound to NIL parsing an anonymous FN.")
:file file
:highlight :end
:message "Malformed while-let expression"
:primary-note "exptected body")))
:primary-note "expected body")))
(let* ((*loop-label-context*
(if label
(list* label const:+default-loop-label+ *loop-label-context*)
Expand Down Expand Up @@ -1170,7 +1170,7 @@ Rebound to NIL parsing an anonymous FN.")
:file file
:highlight :end
:message "Malformed for expression"
:primary-note "exptected body")))
:primary-note "expected body")))

(let ((*loop-label-context*
(if label
Expand Down

0 comments on commit 01a2673

Please sign in to comment.