Skip to content

Commit

Permalink
s/monomorhpism/monomorphism/g
Browse files Browse the repository at this point in the history
  • Loading branch information
Jesse Bouwman authored and eliaslfox committed Mar 11, 2024
1 parent 237da98 commit e8206e1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/intro-to-coalton.md
Original file line number Diff line number Diff line change
Expand Up @@ -751,7 +751,7 @@ Flattened let expressions support pattern matching:
```

Flattened let expression are non recursive, and do not support let polymorhpism. Thus the following is invalid:
Flattened let expression are non recursive, and do not support let polymorphism. Thus the following is invalid:

```
(coalton
Expand Down
4 changes: 2 additions & 2 deletions src/parser/toplevel.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -630,7 +630,7 @@ consume all attributes"))))
((coalton:monomorphize)
(vector-push-extend
(cons
(parse-monomorhpize form file)
(parse-monomorphize form file)
form)
attributes)

Expand Down Expand Up @@ -1963,7 +1963,7 @@ consume all attributes")))
:source (cst:source form))))


(defun parse-monomorhpize (form file)
(defun parse-monomorphize (form file)
(declare (type cst:cst form)
(type coalton-file file)
(values attribute-monomorphize))
Expand Down

0 comments on commit e8206e1

Please sign in to comment.