From dd24f722768856f4cd7c47dda8db23d8b02b1b8e Mon Sep 17 00:00:00 2001 From: Wojciech Kaczmarek Date: Fri, 27 Nov 2015 12:52:45 +0100 Subject: [PATCH] Typo in example which ought to be a good one Hi! Your example was supposed to show compile-time validation by 2 examples: a good and bad one, but the quoted code is bad in both cases - probably copypasted ;) By the way this project looks great. Thanks for creating it! --- doc/features.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/features.md b/doc/features.md index 2749cb8e..60f3f246 100644 --- a/doc/features.md +++ b/doc/features.md @@ -56,7 +56,7 @@ scala> Query(""" | [ :find ?e ?n | :in $ ?char | :where [ ?e :person/name ?n ] - | [ ?e person/character ?char ] + | [ ?e :person/character ?char ] | ] | """) res0: TypedQueryAuto2[DatomicData,DatomicData,(DatomicData, DatomicData)] = [ :find ?e ?n :in $ ?char :where [?e :person/name ?n] [?e :person/character ?char] ]