From db5203d1a06790c5c9521d856cce127168606d43 Mon Sep 17 00:00:00 2001 From: 12932 <68835423+12932@users.noreply.github.com> Date: Tue, 27 Apr 2021 02:41:26 +0800 Subject: [PATCH] fix typo "memroy" to "memory" (#379) --- src/response.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/response.rs b/src/response.rs index 25f3adf..c7b3a8a 100644 --- a/src/response.rs +++ b/src/response.rs @@ -223,7 +223,7 @@ impl Response { /// 3. If no length header, the reader is until server stream end. /// /// Note: If you use `read_to_end()` on the resulting reader, a malicious - /// server might return enough bytes to exhaust available memroy. If you're + /// server might return enough bytes to exhaust available memory. If you're /// making requests to untrusted servers, you should use `.take()` to /// limit the response bytes read. ///