Skip to content

Commit 4c71c83

Browse files
fixes typos in http.client documentation (GH-18300)
(cherry picked from commit b94737a) Co-authored-by: James Corbett <james.h.corbett@gmail.com>
1 parent 7561e7a commit 4c71c83

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
@@ -547,8 +547,8 @@ Here is an example session that shows how to ``POST`` requests::
547547
Client side ``HTTP PUT`` requests are very similar to ``POST`` requests. The
548548
difference lies only the server side where HTTP server will allow resources to
549549
be created via ``PUT`` request. It should be noted that custom HTTP methods
550-
+are also handled in :class:`urllib.request.Request` by sending the appropriate
551-
+method attribute.Here is an example session that shows how to do ``PUT``
550+
are also handled in :class:`urllib.request.Request` by setting the appropriate
551+
method attribute. Here is an example session that shows how to send a ``PUT``
552552
request using http.client::
553553

554554
>>> # This creates an HTTP message

0 commit comments

Comments
 (0)