From 7abf39fc816afd11a3c595beb98f630e897fcfbf Mon Sep 17 00:00:00 2001 From: Timothy Farrell Date: Wed, 22 Aug 2018 15:22:59 -0500 Subject: [PATCH] Upgrade Lerna and require prettier. Some format changes --- packages/pouchtype/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/pouchtype/README.md b/packages/pouchtype/README.md index d9bc899..0bbc456 100644 --- a/packages/pouchtype/README.md +++ b/packages/pouchtype/README.md @@ -131,7 +131,7 @@ const db = PDB('type_example'); export const Contact = new ContactHandler(db, 'contact'); const doc = await Contact.getOrCreate({ - name: "John Doe", - email: "jd@example.com" + name: 'John Doe', + email: 'jd@example.com' }); ```