Skip to content

Commit

Permalink
Fixed docstring typo.
Browse files Browse the repository at this point in the history
Co-authored-by: Thomas Draper <[email protected]>
  • Loading branch information
YarinHeffes and amorphedstar authored Sep 16, 2024
1 parent 063b930 commit 9739d5e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library/ord-tree.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@

(declare contains? ((Ord :elt) => :elt -> (Tree :elt) -> Boolean))
(define (contains? elt tre)
"Does `tre` containan element `=='`to `elt`."
"Does `tre` contain an element `==` to `elt`."
(match (lookup tre elt)
((None) False)
((Some _) True)))
Expand Down

0 comments on commit 9739d5e

Please sign in to comment.