From 3504f6eaed4a3a22d905bb1fe44dafdbf5811a58 Mon Sep 17 00:00:00 2001 From: Byron Torres <43079131+torresjrjr@users.noreply.github.com> Date: Wed, 10 Apr 2019 14:13:20 +0100 Subject: [PATCH] Misspelling correction "Consider" --- Types-of-Handlers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Types-of-Handlers.md b/Types-of-Handlers.md index 55bebeb..148a978 100644 --- a/Types-of-Handlers.md +++ b/Types-of-Handlers.md @@ -37,7 +37,7 @@ Note that since telegram doesn't support spaces in deep linking parameters, you You also have to pay attention to the maximum lenght accepted by Telegram itself. As stated in the [documentation](https://core.telegram.org/bots#deep-linking) the maximum lenght for the start parameter is 64. -Also, since this is an URL parameter, you have to pay attention on how to correctly pass the values in order to avoid passing URL reserved characters. Consier the usage of `base64.urlsafe_b64encode`. +Also, since this is an URL parameter, you have to pay attention on how to correctly pass the values in order to avoid passing URL reserved characters. Consider the usage of `base64.urlsafe_b64encode`. ## Pattern matching: The RegexHandler