From fcd1296f298131ef29c5db1811d527df13c5b673 Mon Sep 17 00:00:00 2001 From: guangwu Date: Wed, 18 Oct 2023 14:20:57 +0800 Subject: [PATCH] fix: typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ff533c4..a27d6b7 100644 --- a/README.md +++ b/README.md @@ -254,7 +254,7 @@ Requests solves these issues by always closing the response body, checking statu ### Why requests and not some other helper library? -There are two major flaws in other libraries as I see it. One is that in other libraries support for `context.Context` tends to be bolted on if it exists at all. Two, many hide the underlying `http.Client` in such a way that it is difficult or impossible to replace or mock out. Beyond that, I believe that none have acheived the same core simplicity that the requests library has. +There are two major flaws in other libraries as I see it. One is that in other libraries support for `context.Context` tends to be bolted on if it exists at all. Two, many hide the underlying `http.Client` in such a way that it is difficult or impossible to replace or mock out. Beyond that, I believe that none have achieved the same core simplicity that the requests library has. ### How do I just get some JSON?