From 12822f2bacdc9dbe3faad54e9105a77cd81b42a8 Mon Sep 17 00:00:00 2001 From: Perry Gagne Date: Thu, 20 Apr 2023 11:13:11 -0400 Subject: [PATCH] Update README.md: Fix Filter Operators section header Filter Operators section header was getting squashed into Functions table. Added a couple lines to fix it. --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 61193ae73..abe602794 100644 --- a/README.md +++ b/README.md @@ -99,6 +99,8 @@ The function output is dictated by the function itself. | first() | Provides the first item of an array | Depends on the array | | last() | Provides the last item of an array | Depends on the array | | index(X) | Provides the item of an array of index: X, if the X is negative, take from backwards | Depends on the array | + + Filter Operators -----------------