From 74e64f5887221542c36360811af9a5b452b99d1f Mon Sep 17 00:00:00 2001 From: Antoine Maitre Date: Fri, 31 Jan 2020 16:19:59 +0100 Subject: [PATCH] fixed readme.md code for newMessage() example --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 35c6ae8..28e854e 100644 --- a/README.md +++ b/README.md @@ -62,7 +62,7 @@ var msg = chatbase.newMessage('my-api-key', 'my-user-id') .setAsFeedback() // sets the message as feedback from the user .setAsNotFeedback() // sets the message as a regular message -- this is the default .setCustomSessionId('123') // custom sessionId. A unique string used to define the scope of each individual interaction with bot. - .setMessageId('123'); // the id of the message, this is optional + .setMessageId('123') // the id of the message, this is optional .setClientTimeout(5000) // Set the TTL in Milliseconds on requests to the Chatbase API. Default is 5000ms. ```