From cdd5647c61218464d020df38876ba6c2e1b1867a Mon Sep 17 00:00:00 2001 From: Geoff Doty Date: Sun, 6 May 2018 18:50:25 -0400 Subject: [PATCH] fix README Github rendering --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 795ba6c..e12cb06 100644 --- a/README.md +++ b/README.md @@ -54,10 +54,10 @@ The public API is very simple, you really only need 3 methods: `add`, `remove`, | Method | Description | |---|---| -| `.add(object)` | Adds entry to collection and returns entry(s) added | -| `.remove(id|object)` | Removes entry(s) from collection and returns removed | -| `.find(id|object)` | find all, find by id, or find by filter, returns array of entries | -| `.dump()` | saves records to JSON file | +| .add(object) | Adds entry to collection and returns entry(s) added | +| .remove(id|object) | Removes entry(s) from collection and returns removed | +| .find(id|object) | find all, find by id, or find by filter, returns array of entries | +| .dump() | saves records to JSON file | #### Length (Count Records) As `Records` are just plain JavaScript Arrays, you can use `.length` to determine the number of results returned, for example: