diff options
Diffstat (limited to 'io/ioutil.ts')
-rw-r--r-- | io/ioutil.ts | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/io/ioutil.ts b/io/ioutil.ts index 979549fbf..c13eff0d4 100644 --- a/io/ioutil.ts +++ b/io/ioutil.ts @@ -4,7 +4,9 @@ type Reader = Deno.Reader; type Writer = Deno.Writer; import { assert } from "../testing/asserts.ts"; -/** copy N size at the most. If read size is lesser than N, then returns nread */ +/** copy N size at the most. + * If read size is lesser than N, then returns nread + * */ export async function copyN( dest: Writer, r: Reader, |