From 62f7b604f8afd718b45dfc95288f1a669edb57a5 Mon Sep 17 00:00:00 2001 From: Luka Steinbach <45404400+luka1199@users.noreply.github.com> Date: Thu, 23 Dec 2021 14:57:07 +0100 Subject: [PATCH] Fixed typo in 'Query Examples.md' I fixed a minor typo in the example code for Where queries in the 'Query Example.md' file. The function 'sleipnirFilter' was defined but the undefined function 'sleipnirFunction' was used in the example code. --- tutorials/Query Examples.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorials/Query Examples.md b/tutorials/Query Examples.md index 1940644e..a94d5d17 100644 --- a/tutorials/Query Examples.md +++ b/tutorials/Query Examples.md @@ -32,7 +32,7 @@ function sleipnirFilter(obj) { } // and then pass that -results = coll.where(sleipnirFunction); +results = coll.where(sleipnirFilter); ``` ### 'Find' queries