summaryrefslogtreecommitdiff
path: root/std/http/_io.ts
diff options
context:
space:
mode:
Diffstat (limited to 'std/http/_io.ts')
-rw-r--r--std/http/_io.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/std/http/_io.ts b/std/http/_io.ts
index 5bdf930e6..529f59cb5 100644
--- a/std/http/_io.ts
+++ b/std/http/_io.ts
@@ -65,7 +65,7 @@ export function chunkedBodyReader(h: Headers, r: BufReader): Deno.Reader {
}
const line = await tp.readLine();
if (line === null) throw new Deno.errors.UnexpectedEof();
- // TODO: handle chunk extension
+ // TODO(bartlomieju): handle chunk extension
const [chunkSizeString] = line.split(";");
const chunkSize = parseInt(chunkSizeString, 16);
if (Number.isNaN(chunkSize) || chunkSize < 0) {