From f96474ef3b7e6c8f3e39d6560c0d9454c14db4a8 Mon Sep 17 00:00:00 2001 From: Lonami Date: Tue, 18 Jul 2017 09:59:15 +0200 Subject: [PATCH] Fix typo "probe" (similar to Spanish "probar") --- Working-with-updates.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Working-with-updates.md b/Working-with-updates.md index 14fb208..282a948 100644 --- a/Working-with-updates.md +++ b/Working-with-updates.md @@ -16,7 +16,7 @@ input('Press to exit...') client.disconnect() ``` -The `update_object` may be any instance of [`Updates`](https://lonamiwebs.github.io/Telethon/types/updates.html) or even a single [`Update`](https://lonamiwebs.github.io/Telethon/types/update.html), so you have absolute control about which updates you want to handle and which you don't. `isinstance(update_object, SomeClass)` may probe very useful here. +The `update_object` may be any instance of [`Updates`](https://lonamiwebs.github.io/Telethon/types/updates.html) or even a single [`Update`](https://lonamiwebs.github.io/Telethon/types/update.html), so you have absolute control about which updates you want to handle and which you don't. `isinstance(update_object, SomeClass)` may prove very useful here. ## Note follow-up The library currently handles all updates in a **passive** way, so not all updates may be received. This is, all it does is listen to what the server sends. It will **not** run things like [`GetDifferenceRequest`](https://lonamiwebs.github.io/Telethon/methods/updates/get_difference.html) or take into consideration the methods that return more [`Updates`](https://lonamiwebs.github.io/Telethon/types/updates.html). \ No newline at end of file