From 1aee37ab98e973beaac82fe6b62be6daf8aabd57 Mon Sep 17 00:00:00 2001 From: Austin Miller Date: Mon, 18 Dec 2017 16:44:26 -0800 Subject: [PATCH] Fixes small example bug in README Fix example bug that causes an error if we directly copy past --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1557272..2f4d34f 100644 --- a/README.md +++ b/README.md @@ -724,7 +724,7 @@ var BlogPost = vogels.define('Account', { }, indexes : [{ - hashkey : 'email', rangekey : 'PublishedDateTime', type : 'local', name : 'PublishedIndex' + hashKey : 'email', rangeKey : 'PublishedDateTime', type : 'local', name : 'PublishedIndex' }] }); ```