Skip to content

Commit 9257d86

Browse files
committed
style: adoc fixes and bump patch
1 parent 3f74209 commit 9257d86

File tree

3 files changed

+16
-6
lines changed

3 files changed

+16
-6
lines changed

Diff for: CHANGELOG.md

+11-1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1313

1414
### Bug Fixes (patch)
1515

16+
## [1.2.2]
17+
18+
### Breaking Changes (major)
19+
20+
### New Features (minor)
21+
22+
### Bug Fixes (patch)
23+
- Optimize NPM package
24+
1625
## [1.2.1]
1726

1827
### Breaking Changes (major)
@@ -68,7 +77,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6877

6978
-
7079

71-
[Unreleased]: https://github.com/amejiarosario/dsa.js/compare/1.2.0...HEAD
80+
[Unreleased]: https://github.com/amejiarosario/dsa.js/compare/1.2.2...HEAD
81+
[1.2.2]: https://github.com/amejiarosario/dsa.js/compare/1.2.1...1.2.2
7282
[1.2.1]: https://github.com/amejiarosario/dsa.js/compare/1.2.0...1.2.1
7383
[1.2.0]: https://github.com/amejiarosario/dsa.js/compare/1.1.0...1.2.0
7484
[1.1.0]: https://github.com/amejiarosario/dsa.js/compare/1.0.0...1.1.0

Diff for: book/chapters/linked-list.adoc

+4-4
Original file line numberDiff line numberDiff line change
@@ -155,10 +155,10 @@ If there’s no element in the list yet, the first and last node would be the sa
155155
For inserting an element at the middle of the list, you would need to specify the position (index) in the collection. Then, you create the new node and update the references to it.
156156

157157
.There are 4 references to update:
158-
1. New node's `next`.
159-
1. New node's `previous`.
160-
1. New node's previous `next`.
161-
1. New node's next `previous`.
158+
. New node's `next`.
159+
. New node's `previous`.
160+
. New node's previous `next`.
161+
. New node's next `previous`.
162162

163163

164164
Let’s do an example, with the following doubly linked list:

Diff for: package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dsa.js",
3-
"version": "1.2.1",
3+
"version": "1.2.2",
44
"description": "Data Structures & Algorithms in JS",
55
"author": "Adrian Mejia <[email protected]> (https://adrianmejia.com)",
66
"homepage": "https://github.com/amejiarosario/dsa.js",

0 commit comments

Comments
 (0)