From 11a4b6297fdce28473ff735ae643efa60b35f529 Mon Sep 17 00:00:00 2001 From: Raouf Fathi Date: Tue, 10 Mar 2020 18:28:06 +0800 Subject: [PATCH] fix(missing string quotations) a couple of object values are supposed to be strings but are missing quotes. this might lead to inconsistency and could raise confusion in the future! --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 4671258..0ed1aae 100644 --- a/README.md +++ b/README.md @@ -135,8 +135,8 @@ Simple usage: type: 'users', id: '1', attributes: { - 'first-name': Sandro, - 'last-name': Munda + 'first-name': 'Sandro', + 'last-name': 'Munda' } }, { type: 'users',