From 654e39b9a1ab9ea2a685daf82e735789034ffa40 Mon Sep 17 00:00:00 2001 From: Geoff Doty Date: Sun, 6 May 2018 18:54:29 -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 e12cb06..8c21cfb 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 or object)` | Removes entry(s) from collection and returns removed | +| `.find(id or 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: