From 3d830f699b6826c7063db00a1dc0445fc88a8bad Mon Sep 17 00:00:00 2001 From: Jonathan Ong Date: Thu, 28 Nov 2013 15:27:15 -0800 Subject: [PATCH] be more specific with the comments --- multipart-files/app.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/multipart-files/app.js b/multipart-files/app.js index fb2c8ab..248ddf6 100644 --- a/multipart-files/app.js +++ b/multipart-files/app.js @@ -25,7 +25,7 @@ app.use(function *(){ while (part = yield parts) { // save each part to a file, // but do it in a different channel - // so we don't block + // so we don't block this particular while loop. saveTo(part, path.join(tmpdir, part.filename), ch.push()); } @@ -36,7 +36,7 @@ app.use(function *(){ files.push(file) } - // return the files + // return the array of filenames this.body = files; })