From 39f62403c72403912efa65e5e91064287f1148fc Mon Sep 17 00:00:00 2001 From: alexbostock Date: Sun, 30 Jul 2017 21:27:09 +0100 Subject: [PATCH] linkedlist: correct grammar in comments MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PR-URL: https://github.com/nodejs/node/pull/14546 Reviewed-By: Vse Mozhet Byt Reviewed-By: Tobias Nießen Reviewed-By: Timothy Gu --- lib/internal/linkedlist.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lib/internal/linkedlist.js b/lib/internal/linkedlist.js index 40bca91de25803..61ed0c279fdc2f 100644 --- a/lib/internal/linkedlist.js +++ b/lib/internal/linkedlist.js @@ -14,7 +14,7 @@ function create() { } exports.create = create; -// show the most idle item +// Show the most idle item. function peek(list) { if (list._idlePrev === list) return null; return list._idlePrev; @@ -31,7 +31,7 @@ function shift(list) { exports.shift = shift; -// remove a item from its list +// Remove an item from its list. function remove(item) { if (item._idleNext) { item._idleNext._idlePrev = item._idlePrev; @@ -47,18 +47,18 @@ function remove(item) { exports.remove = remove; -// remove a item from its list and place at the end. +// Remove an item from its list and place at the end. function append(list, item) { if (item._idleNext || item._idlePrev) { remove(item); } - // items are linked with _idleNext -> (older) and _idlePrev -> (newer) + // Items are linked with _idleNext -> (older) and _idlePrev -> (newer). // Note: This linkage (next being older) may seem counter-intuitive at first. item._idleNext = list._idleNext; item._idlePrev = list; - // the list _idleNext points to tail (newest) and _idlePrev to head (oldest) + // The list _idleNext points to tail (newest) and _idlePrev to head (oldest). list._idleNext._idlePrev = item; list._idleNext = item; }