diff options
author | Daniel Schadt <kingdread@gmx.de> | 2020-09-23 15:02:59 +0200 |
---|---|---|
committer | Daniel Schadt <kingdread@gmx.de> | 2020-09-23 15:02:59 +0200 |
commit | 3b79ad8fa9b4a8c9c535b417129e3f70769074e0 (patch) | |
tree | 6154c8506616bc3489bcc866c6f6bad0401f82f3 /src | |
parent | 0441078a3a0dc2fb37971257cc78792b32c1a7bd (diff) | |
download | evtclib-3b79ad8fa9b4a8c9c535b417129e3f70769074e0.tar.gz evtclib-3b79ad8fa9b4a8c9c535b417129e3f70769074e0.tar.bz2 evtclib-3b79ad8fa9b4a8c9c535b417129e3f70769074e0.zip |
fix docstring typo
Diffstat (limited to 'src')
-rw-r--r-- | src/processing.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/processing.rs b/src/processing.rs index af22ee0..722440b 100644 --- a/src/processing.rs +++ b/src/processing.rs @@ -81,7 +81,7 @@ pub fn process_stream<R: Read + Seek>( /// Convenience function to process a given file directly. /// /// This is a shorthand for opening the file and then using [`process_stream`][process_stream] with -/// it. This function automatically wraps the raw file in a buffered reader, to ensure the bext +/// it. This function automatically wraps the raw file in a buffered reader, to ensure the best /// reading performance. /// /// If you need more fine-grained control, consider using [`process_stream`][process_stream] or |