Skip to content

Commit 5f696e7

Browse files
committed
Fixed typos in examples.rst
1 parent 17364ed commit 5f696e7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/examples.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ It is important to use correct ``enctype``, depending on the type of data you wa
196196
- ``application/x-www-form-urlencoded`` - For sending simple text data without any special characters including spaces.
197197
If you use it, values will be automatically parsed as strings, but special characters will be URL encoded
198198
e.g. ``"Hello World! ^-$%"`` will be saved as ``"Hello+World%21+%5E-%24%25"``
199-
- ``multipart/form-data`` - For sending textwith special characters and files
199+
- ``multipart/form-data`` - For sending text with special characters and files
200200
When used, non-file values will be automatically parsed as strings and non plain text files will be saved as ``bytes``.
201201
e.g. ``"Hello World! ^-$%"`` will be saved as ``'Hello World! ^-$%'``, and e.g. a PNG file will be saved as ``b'\x89PNG\r\n\x1a\n\x00\...``.
202202
- ``text/plain`` - For sending text data with special characters.
@@ -325,7 +325,7 @@ response object somewhere, so that it can be accessed later.
325325

326326
.. warning::
327327
Because of the limited number of concurrently open sockets, it is **not possible to process more than one SSE response at the same time**.
328-
This might change in the future, but for now, it is recommended to use SSE **only with one client at a time.**.
328+
This might change in the future, but for now, it is recommended to use SSE **only with one client at a time**.
329329

330330
.. literalinclude:: ../examples/httpserver_sse.py
331331
:caption: examples/httpserver_sse.py

0 commit comments

Comments
 (0)