mirror of
https://github.com/aiogram/aiogram.git
synced 2026-04-08 16:37:47 +00:00
docs: fix quotes
This commit is contained in:
parent
d6ff6f5422
commit
2dc0be6b56
1 changed files with 2 additions and 2 deletions
|
|
@ -11,7 +11,7 @@ Basic encode example:
|
|||
|
||||
encoded = encode_payload("foo")
|
||||
|
||||
# result: 'Zm9v'
|
||||
# result: "Zm9v"
|
||||
|
||||
Basic decode it back example:
|
||||
|
||||
|
|
@ -21,7 +21,7 @@ Basic decode it back example:
|
|||
|
||||
encoded = "Zm9v"
|
||||
decoded = decode_payload(encoded)
|
||||
# result: '"foo"'
|
||||
# result: "foo"
|
||||
|
||||
Encoding and decoding with your own methods:
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue