Skip to content

Commit 0f05ec9

Browse files
committed
Docs: Add link to blog post
1 parent 4d552ee commit 0f05ec9

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

src/data-structures/linked-list/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ A JavaScript implementation of a linked list. This class uses the conventions of
1313
1. Defining a `values()` generator method.
1414
1. Returning `undefined` from `get()` when no such index exists.
1515

16+
Read the [blog post](https://humanwhocodes.com/blog/2019/01/computer-science-in-javascript-linked-list/) about the design of this class.
17+
1618
## Usage
1719

1820
Use CommonJS to get access to the `LinkedList` constructor:

src/data-structures/linked-list/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@humanwhocodes/linked-list",
3-
"version": "2.0.1",
3+
"version": "2.0.2",
44
"description": "A LinkedList implementation in JavaScript",
55
"main": "linked-list.js",
66
"scripts": {

0 commit comments

Comments
 (0)