Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 9257d86

Browse files
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

‎CHANGELOG.md

Lines changed: 11 additions & 1 deletion
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

‎book/chapters/linked-list.adoc

Lines changed: 4 additions & 4 deletions
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:

‎package.json

Lines changed: 1 addition & 1 deletion
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 <hi+dsajs@adrianmejia.com> (https://adrianmejia.com)",
66
"homepage": "https://github.com/amejiarosario/dsa.js",

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /