Correct `fil` typo

This commit is contained in:
Sage Vaillancourt 2023-12-17 12:16:26 -05:00
parent f6f6a27689
commit 8120889bfd
1 changed files with 1 additions and 1 deletions

View File

@ -158,7 +158,7 @@ condition. If the comparison returns true, it is added to the
returned list. For example:
```
(fil (fn (a) (> a 100) (20 150 30 200))
(fil (fn (a) (> a 100)) (20 150 30 200))
```
would return `( 150 200 )`, as no other elements fit the condition `(< 100 n)`.