From 7f0ae4a6ec82db7bc461010c31c984803d9ad27a Mon Sep 17 00:00:00 2001 From: alexbostock Date: Sun, 30 Jul 2017 21:27:09 +0100 Subject: [PATCH 1/2] linkedlist: correct grammar in comments No changes to the functionality, just changed "a item" to "an item" in comments. --- lib/internal/linkedlist.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/internal/linkedlist.js b/lib/internal/linkedlist.js index d2e868a2cfd5f8..41ad1338d1ab37 100644 --- a/lib/internal/linkedlist.js +++ b/lib/internal/linkedlist.js @@ -11,7 +11,7 @@ function peek(list) { return list._idlePrev; } -// remove a item from its list +// remove an item from its list function remove(item) { if (item._idleNext) { item._idleNext._idlePrev = item._idlePrev; @@ -25,7 +25,7 @@ function remove(item) { item._idlePrev = null; } -// 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); From 919ef3efa363ce19477b8915356388a007567410 Mon Sep 17 00:00:00 2001 From: alexbostock Date: Sun, 30 Jul 2017 22:02:47 +0100 Subject: [PATCH 2/2] linkedlist: add missing capital letters and periods Changing comments only. --- 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 41ad1338d1ab37..55f7be233476a3 100644 --- a/lib/internal/linkedlist.js +++ b/lib/internal/linkedlist.js @@ -5,13 +5,13 @@ function init(list) { list._idlePrev = list; } -// show the most idle item +// Show the most idle item. function peek(list) { if (list._idlePrev === list) return null; return list._idlePrev; } -// remove an item from its list +// Remove an item from its list. function remove(item) { if (item._idleNext) { item._idleNext._idlePrev = item._idlePrev; @@ -25,18 +25,18 @@ function remove(item) { item._idlePrev = null; } -// remove an 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; }