From 23dc137c62396f42a7685c2a97d6788a871a8835 Mon Sep 17 00:00:00 2001 From: Gus Class Date: Fri, 5 May 2017 12:41:50 -0700 Subject: [PATCH] Fixes typo --- speech/recognize.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/speech/recognize.js b/speech/recognize.js index c3cd5cbc1a..3b6fef5fa2 100644 --- a/speech/recognize.js +++ b/speech/recognize.js @@ -132,7 +132,7 @@ function asyncRecognize (filename, encoding, sampleRateHertz, languageCode) { speech.startRecognition(filename, request) .then((results) => { const operation = results[0]; - // Get a Promise represention of the final result of the job + // Get a Promise representation of the final result of the job return operation.promise(); }) .then((results) => { @@ -176,7 +176,7 @@ function asyncRecognizeGCS (gcsUri, encoding, sampleRateHertz, languageCode) { speech.startRecognition(gcsUri, request) .then((results) => { const operation = results[0]; - // Get a Promise represention of the final result of the job + // Get a Promise representation of the final result of the job return operation.promise(); }) .then((results) => {