Skip to content

Commit bbdade6

Browse files
📚 docs(README): Improve description and code example.
1 parent 26d3ecd commit bbdade6

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
11
:repeat: [@data-structure-algebra/circularly-linked-list](https://data-structure-algebra.github.io/circularly-linked-list)
22
==
33

4-
Circular Linked Lists for JavaScript.
4+
Circularly linked lists for JavaScript.
55
See [docs](https://data-structure-algebra.github.io/circularly-linked-list/index.html).
66
Parent is [js-data-structures](https://github.com/make-github-pseudonymous-again/js-data-structures).
77

88
> :warning: The code requires `regeneratorRuntime` to be defined, for instance by importing
99
> [regenerator-runtime/runtime](https://www.npmjs.com/package/regenerator-runtime).
1010
1111
```js
12-
let list = from( "abc" ) ;
12+
import {from} from '@data-structure-algebra/circularly-linked-list';
13+
let list = from('abc');
1314
```
1415

1516
[![License](https://img.shields.io/github/license/data-structure-algebra/circularly-linked-list.svg)](https://raw.githubusercontent.com/data-structure-algebra/circularly-linked-list/main/LICENSE)

0 commit comments

Comments
 (0)