From 9962615eabd61c2e61e2b3170577e698f5f0e810 Mon Sep 17 00:00:00 2001 From: Gus Class Date: Fri, 5 May 2017 12:45:08 -0700 Subject: [PATCH] Fixes typo (#377) --- 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) => {