From 8120889bfd3112f52eb03719ec060dd59a9ecd70 Mon Sep 17 00:00:00 2001 From: Sage Vaillancourt Date: Sun, 17 Dec 2023 12:16:26 -0500 Subject: [PATCH] Correct `fil` typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 837f737..a2af81a 100644 --- a/README.md +++ b/README.md @@ -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)`.