fix typo "memroy" to "memory" (#379)

This commit is contained in:
12932
2021-04-27 02:41:26 +08:00
committed by GitHub
parent c0d7157ae7
commit db5203d1a0

View File

@@ -223,7 +223,7 @@ impl Response {
/// 3. If no length header, the reader is until server stream end. /// 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 /// 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 /// making requests to untrusted servers, you should use `.take()` to
/// limit the response bytes read. /// limit the response bytes read.
/// ///