From: Simon K Date: Tue, 29 Nov 2022 15:55:38 +0000 (+0000) Subject: remove `chunk_size` from api docs for `iter_lines` variants (#2464) X-Git-Tag: 0.23.2~27 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=deb904dd156157a596290b9a94e91943d6cf316e;p=thirdparty%2Fhttpx.git remove `chunk_size` from api docs for `iter_lines` variants (#2464) Co-authored-by: Tom Christie --- diff --git a/docs/api.md b/docs/api.md index 3f806b6f..ca5c0ba3 100644 --- a/docs/api.md +++ b/docs/api.md @@ -76,14 +76,14 @@ * `def .iter_raw([chunk_size])` - **bytes iterator** * `def .iter_bytes([chunk_size])` - **bytes iterator** * `def .iter_text([chunk_size])` - **text iterator** -* `def .iter_lines([chunk_size])` - **text iterator** +* `def .iter_lines()` - **text iterator** * `def .close()` - **None** * `def .next()` - **Response** * `def .aread()` - **bytes** * `def .aiter_raw([chunk_size])` - **async bytes iterator** * `def .aiter_bytes([chunk_size])` - **async bytes iterator** * `def .aiter_text([chunk_size])` - **async text iterator** -* `def .aiter_lines([chunk_size])` - **async text iterator** +* `def .aiter_lines()` - **async text iterator** * `def .aclose()` - **None** * `def .anext()` - **Response**