From e344e763c754342684f1ba421b8010e6e1b8fc72 Mon Sep 17 00:00:00 2001 From: Dustin Popp Date: Thu, 2 Aug 2018 14:08:03 -0500 Subject: [PATCH] docs: fix jsdocs to use correct default for interim_results --- speech-to-text/recognize-stream.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/speech-to-text/recognize-stream.js b/speech-to-text/recognize-stream.js index 0a00e1b1..6fa48ca0 100644 --- a/speech-to-text/recognize-stream.js +++ b/speech-to-text/recognize-stream.js @@ -57,7 +57,7 @@ var QUERY_PARAMS_ALLOWED = ['customization_id', 'acoustic_customization_id', 'mo * @param {String} options.access_token - IAM Access Token for RC services * @param {Object} [options.headers] - Only works in Node.js, not in browsers. Allows for custom headers to be set, including an Authorization header (preventing the need for auth tokens) * @param {String} [options.content-type='audio/wav'] - content type of audio; can be automatically determined from file header in most cases. only wav, flac, ogg/opus, and webm are supported - * @param {Boolean} [options.interim_results=true] - Send back non-final previews of each "sentence" as it is being processed. These results are ignored in text mode. + * @param {Boolean} [options.interim_results=false] - Send back non-final previews of each "sentence" as it is being processed. These results are ignored in text mode. * @param {Boolean} [options.word_confidence=false] - include confidence scores with results. * @param {Boolean} [options.timestamps=false] - include timestamps with results. * @param {Number} [options.max_alternatives=1] - maximum number of alternative transcriptions to include.