From 42976ac0f75950d57df3701383c2b3a8fac83155 Mon Sep 17 00:00:00 2001 From: Bibo-Joshi <22366557+Bibo-Joshi@users.noreply.github.com> Date: Sun, 29 May 2022 15:47:44 +0200 Subject: [PATCH] Updated Builder Pattern (markdown) --- Builder-Pattern.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Builder-Pattern.md b/Builder-Pattern.md index c7ef140..ad4ff61 100644 --- a/Builder-Pattern.md +++ b/Builder-Pattern.md @@ -23,7 +23,7 @@ application = Application.builder().token('TOKEN').build() you will automatically have * the `Updater` available as `application.updater` -* the `Bot` available as `application.(updater.)bot` +* the `Bot` available as `application.bot` or `application.updater.bot` (both are the same object) * a `BaseRequest` object initialized and ready to be used by the `application.bot` * several other components & sane default values set up.