From e7672549246a4059024abbc1fc3f24e0f1a74169 Mon Sep 17 00:00:00 2001 From: Haydn Ewers Date: Fri, 2 Oct 2015 16:05:45 +0930 Subject: [PATCH] Fix include param in README example. Fixes #36. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 69285dc..7e1237b 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ store.observable.subscribe(function (event) { }); // Load all the products. -store.load("products", { include: [ "category" ] }, function (products) { +store.load("products", { include: "category" }, function (products) { products.length; // 1 products[0].id; // "1" -- 2.51.2