diff options
| author | Rapptz <[email protected]> | 2018-09-24 23:39:25 -0400 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2018-09-24 23:39:25 -0400 |
| commit | 99b1390e5aae363df994d3f36420206a78f82147 (patch) | |
| tree | 37ec0a1a518a63da284623c97682b15638287490 /docs/ext/commands/api.rst | |
| parent | Optimise tight loops in DiscordGateway.received_message (diff) | |
| download | discord.py-99b1390e5aae363df994d3f36420206a78f82147.tar.xz discord.py-99b1390e5aae363df994d3f36420206a78f82147.zip | |
[commands] Elaborate more on disallowed types in Greedy and Optional
Diffstat (limited to 'docs/ext/commands/api.rst')
| -rw-r--r-- | docs/ext/commands/api.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/ext/commands/api.rst b/docs/ext/commands/api.rst index 936a76b6..34fa311d 100644 --- a/docs/ext/commands/api.rst +++ b/docs/ext/commands/api.rst @@ -185,7 +185,7 @@ Converters As a consequence of this behaviour, most input errors are silently discarded, since it is used as an indicator of when to stop parsing. - When a parser error is met the greedy converter stops converting, it undos the + When a parser error is met the greedy converter stops converting, undoes the internal string parsing routine, and continues parsing regularly. For example, in the following code: |