Skip to content

Commit

Permalink
Fix typo in word 'session' in detect sample comments (#147)
Browse files Browse the repository at this point in the history
  • Loading branch information
adamgauthier authored and NimJay committed Nov 18, 2022
1 parent 47a6bcc commit 93de3ff
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions dialogflow/detect.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ function detectTextIntent(projectId, sessionId, queries, languageCode) {
// Imports the Dialogflow library
const dialogflow = require('dialogflow');

// Instantiates a sessison client
// Instantiates a session client
const sessionClient = new dialogflow.SessionsClient();

if (!queries || !queries.length) {
Expand Down Expand Up @@ -97,7 +97,7 @@ function detectEventIntent(projectId, sessionId, eventName, languageCode) {
// Imports the Dialogflow library
const dialogflow = require('dialogflow');

// Instantiates a sessison client
// Instantiates a session client
const sessionClient = new dialogflow.SessionsClient();

// The path to identify the agent that owns the created intent.
Expand Down Expand Up @@ -138,7 +138,7 @@ function detectAudioIntent(
// Imports the Dialogflow library
const dialogflow = require('dialogflow');

// Instantiates a sessison client
// Instantiates a session client
const sessionClient = new dialogflow.SessionsClient();

// The path to identify the agent that owns the created intent.
Expand Down Expand Up @@ -186,7 +186,7 @@ function streamingDetectIntent(
// Imports the Dialogflow library
const dialogflow = require('dialogflow');

// Instantiates a sessison client
// Instantiates a session client
const sessionClient = new dialogflow.SessionsClient();

// The path to the local file on which to perform speech recognition, e.g.
Expand Down

0 comments on commit 93de3ff

Please sign in to comment.