From 6eb8c0245216b714b49b4f5f127eb4544f521e6b Mon Sep 17 00:00:00 2001 From: Satyajit Ranjeev Date: Mon, 26 Sep 2016 08:08:37 +0200 Subject: [PATCH] Fix typo in Readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9af43147..7ee669e8 100644 --- a/README.md +++ b/README.md @@ -245,7 +245,7 @@ counts, err := engine.Count(&user) ```Go err := engine.Where(builder.NotIn("a", 1, 2).And(builder.In("b", "c", "d", "e"))).Find(&users) // SELECT id, name ... FROM user WHERE a NOT IN (?, ?) AND b IN (?, ?, ?) -`` +``` # Cases