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 {
266
266
267
267
/// Read and returns whole content of file.
268
268
///
269
- /// For continues reading, use [`Self::reader`] instead.
269
+ /// For continuous reading, use [`Self::reader`] instead.
270
270
pub async fn read ( & self ) -> crate :: Result < Bytes > {
271
271
Ok ( self
272
272
. op
@@ -275,7 +275,7 @@ impl InputFile {
275
275
. to_bytes ( ) )
276
276
}
277
277
278
- /// Creates [`FileRead`] for continues reading.
278
+ /// Creates [`FileRead`] for continuous reading.
279
279
///
280
280
/// For one-time reading, use [`Self::read`] instead.
281
281
pub async fn reader ( & self ) -> crate :: Result < impl FileRead > {
@@ -349,14 +349,14 @@ impl OutputFile {
349
349
/// # Notes
350
350
///
351
351
/// Calling `write` will overwrite the file if it exists.
352
- /// For continues writing, use [`Self::writer`].
352
+ /// For continuous writing, use [`Self::writer`].
353
353
pub async fn write ( & self , bs : Bytes ) -> crate :: Result < ( ) > {
354
354
let mut writer = self . writer ( ) . await ?;
355
355
writer. write ( bs) . await ?;
356
356
writer. close ( ) . await
357
357
}
358
358
359
- /// Creates output file for continues writing.
359
+ /// Creates output file for continuous writing.
360
360
///
361
361
/// # Notes
362
362
///
You can’t perform that action at this time.
0 commit comments