From 4dc106e78dc3a6eda8fe5e937fc7205a0ad61a6e Mon Sep 17 00:00:00 2001 From: Geoffrey Gowan Date: Mon, 7 Dec 2015 18:54:01 -0800 Subject: [PATCH] Update concepts.js Making this code snippet consistent with the corresponding docs and all the rest of the instances of 'sampleTask' in this file. --- datastore/concepts.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/datastore/concepts.js b/datastore/concepts.js index eaf4bd913d..9dfc0a1fad 100644 --- a/datastore/concepts.js +++ b/datastore/concepts.js @@ -70,7 +70,7 @@ Entity.prototype.getNamedKey = function() { // [START named_key] var taskKey = datastore.key([ 'Task', - 'sampletask' + 'sampleTask' ]); // [END named_key] @@ -1323,4 +1323,4 @@ Transaction.prototype.testSingleEntityGroupReadOnly = function(callback) { callback(); } }); -}; \ No newline at end of file +};