From dfecb801db4d408f0e408632b7596dfd5ae7b7f6 Mon Sep 17 00:00:00 2001 From: Julien Fontanet Date: Thu, 28 May 2020 14:48:27 +0200 Subject: [PATCH] fix(read-chunk/USAGE): fix pkg name --- @vates/read-chunk/USAGE.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/@vates/read-chunk/USAGE.md b/@vates/read-chunk/USAGE.md index 39ecb22b7..ecb5661d1 100644 --- a/@vates/read-chunk/USAGE.md +++ b/@vates/read-chunk/USAGE.md @@ -3,7 +3,7 @@ - returns `null` if the stream has ended ```js -import { readChunk } from '@xen-orchestra/read-chunk' +import { readChunk } from '@vates/read-chunk' ;(async () => { let chunk while ((chunk = await readChunk(stream, 1024)) !== null) {