summaryrefslogtreecommitdiffstats
path: root/filter.c
diff options
context:
space:
mode:
Diffstat (limited to 'filter.c')
-rw-r--r--filter.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/filter.c b/filter.c
index 632a01ad..67230a21 100644
--- a/filter.c
+++ b/filter.c
@@ -72,7 +72,7 @@ static val trie_add(val trie, val key, val value)
return node;
}
-/*
+/*
* Reduce the storage requirement for a the trie, by applying
* these rules:
*
@@ -245,7 +245,7 @@ static val trie_filter_string(val filter, val str)
val filter_string_tree(val filter, val obj)
{
switch (type(obj)) {
- case NIL:
+ case NIL:
return nil;
case CONS:
return mapcar(curry_12_2(func_n2(filter_string_tree), filter), obj);