From c50b1461aac0909c7d2d217dd0fb8b3d2cb3e5ff Mon Sep 17 00:00:00 2001 From: Jason Cooke Date: Mon, 26 Aug 2019 10:14:14 +1200 Subject: [PATCH] docs: fix typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 35c6ae8..165b342 100644 --- a/README.md +++ b/README.md @@ -66,7 +66,7 @@ var msg = chatbase.newMessage('my-api-key', 'my-user-id') .setClientTimeout(5000) // Set the TTL in Milliseconds on requests to the Chatbase API. Default is 5000ms. ``` -Once a message is populated, one can send it to the service and listen on its progress using promises. Note that timestamp is not explicitly set here (although it can be) since it is automatically set on the message to the time of instantiation. Note also that the client type does not need to be explictly set either unless an agent client type is required since the message will automatically default to the user type. +Once a message is populated, one can send it to the service and listen on its progress using promises. Note that timestamp is not explicitly set here (although it can be) since it is automatically set on the message to the time of instantiation. Note also that the client type does not need to be explicitly set either unless an agent client type is required since the message will automatically default to the user type. ```JS var chatbase = require('@google/chatbase');