diff --git a/package.json b/package.json index 152a0a0..a313f77 100644 --- a/package.json +++ b/package.json @@ -35,7 +35,7 @@ }, "name": "thorish", "description": "This is a library of useful JS concepts and data structures for Node and the browser. It it, unashamedly, a dumping ground for code needed by [@samthor](https://twitter.com/samthor)'s projects.", - "version": "1.1.23", + "version": "1.1.24", "directories": { "test": "test" }, diff --git a/src/queue.ts b/src/queue.ts index 0bd6d89..f0b7ad8 100644 --- a/src/queue.ts +++ b/src/queue.ts @@ -133,7 +133,7 @@ export interface Queue { } /** - * Link-list based queue. + * Linked-list based queue. */ export interface LinkQueue extends Queue { /**