8000 fixes typos in http.client documentation (#18300) · python/cpython@b94737a · GitHub
[go: up one dir, main page]

Skip to content

Commit b94737a

Browse files
fixes typos in http.client documentation (#18300)
1 parent 90d9ba6 commit b94737a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Doc/library/http.client.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -586,8 +586,8 @@ Here is an example session that shows how to ``POST`` requests::
586586
Client side ``HTTP PUT`` requests are very similar to ``POST`` requests. The
587587
difference lies only the server side where HTTP server will allow resources to
588588
be created via ``PUT`` request. It should be noted that custom HTTP methods
589-
+are also handled in :class:`urllib.request.Request` by sending the appropriate
590-
+method attribute.Here is an example session that shows how to do ``PUT``
589+
are also handled in :class:`urllib.request.Request` by setting the appropriate
590+
method attribute. Here is an example session that shows how to send a ``PUT``
591591
request using http.client::
592592

593593
>>> # This creates an HTTP message

0 commit comments

Comments
 (0)
0