From e1de8d941a8e226a38b81ad65df15b072bef0876 Mon Sep 17 00:00:00 2001 From: Billy Vong Date: Sat, 8 Aug 2020 08:56:25 -0700 Subject: [PATCH] fix(docs): Fix typo in core.ts Just a simple typo fix --- packages/botkit/src/core.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/botkit/src/core.ts b/packages/botkit/src/core.ts index 3a61ca7d5..23bffcb89 100644 --- a/packages/botkit/src/core.ts +++ b/packages/botkit/src/core.ts @@ -47,7 +47,7 @@ export interface BotkitConfiguration { adapterConfig?: {[key: string]: any}; // object with stuff in it /** - * An instance of Express used to define web endpoints. If not specified, oen will be created internally. + * An instance of Express used to define web endpoints. If not specified, one will be created internally. * Note: only use your own Express if you absolutely must for some reason. Otherwise, use `controller.webserver` */ webserver?: any;