Merge pull request #1825 from wonderingabout/fix-typos

fix typo
This commit is contained in:
Alexey Pyltsyn 2020-03-29 05:54:36 +03:00 committed by GitHub
commit 8cf89b3321
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -462,7 +462,7 @@ list.next.next.next = { value: 4 };
list.next.next.next.next = null;
```
Here we can even more clearer see that there are multiple objects, each one has the `value` and `next` pointing to the neighbour. The `list` variable is the first object in the chain, so following `next` pointers from it we can reach any element.
Here we can even more clearly see that there are multiple objects, each one has the `value` and `next` pointing to the neighbour. The `list` variable is the first object in the chain, so following `next` pointers from it we can reach any element.
The list can be easily split into multiple parts and later joined back: