From 56c4465048132207e4b6a2a66ae0bc8dd21314f1 Mon Sep 17 00:00:00 2001 From: Sylvain WITMEYER Date: Thu, 10 Mar 2016 10:35:42 -0500 Subject: [PATCH] Update createTable.js Typo in table name --- examples/createTable.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/createTable.js b/examples/createTable.js index 6322b71..901f4a5 100644 --- a/examples/createTable.js +++ b/examples/createTable.js @@ -40,8 +40,8 @@ vogels.define('example-GameScore', { }); vogels.createTables({ - 'Account' : {readCapacity: 1, writeCapacity: 1}, - 'GameScore' : {readCapacity: 1, writeCapacity: 1} + 'example-Account' : {readCapacity: 1, writeCapacity: 1}, + 'example-GameScore' : {readCapacity: 1, writeCapacity: 1} }, function (err) { if(err) { console.log('Error creating tables', err);