File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -266,7 +266,7 @@ impl InputFile {
266266
267267 /// Read and returns whole content of file.
268268 ///
269- /// For continues reading, use [`Self::reader`] instead.
269+ /// For continuous reading, use [`Self::reader`] instead.
270270 pub async fn read ( & self ) -> crate :: Result < Bytes > {
271271 Ok ( self
272272 . op
@@ -275,7 +275,7 @@ impl InputFile {
275275 . to_bytes ( ) )
276276 }
277277
278- /// Creates [`FileRead`] for continues reading.
278+ /// Creates [`FileRead`] for continuous reading.
279279 ///
280280 /// For one-time reading, use [`Self::read`] instead.
281281 pub async fn reader ( & self ) -> crate :: Result < impl FileRead > {
@@ -349,14 +349,14 @@ impl OutputFile {
349349 /// # Notes
350350 ///
351351 /// Calling `write` will overwrite the file if it exists.
352- /// For continues writing, use [`Self::writer`].
352+ /// For continuous writing, use [`Self::writer`].
353353 pub async fn write ( & self , bs : Bytes ) -> crate :: Result < ( ) > {
354354 let mut writer = self . writer ( ) . await ?;
355355 writer. write ( bs) . await ?;
356356 writer. close ( ) . await
357357 }
358358
359- /// Creates output file for continues writing.
359+ /// Creates output file for continuous writing.
360360 ///
361361 /// # Notes
362362 ///
You can’t perform that action at this time.
0 commit comments