Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/sixth-cursors-impl.md
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ Just one more boss to fight, splice_before and splice_after, which I expect to b
* If their list is empty, we don't need to do anything.
* If our list is empty, then our list just becomes their list.
* If we're pointing at the ghost, then this appends to the back (change list.back)
* If we're pointing at the first element (0), this this appends to the front (change list.front)
* If we're pointing at the first element (0), then this appends to the front (change list.front)
* In the general case, we do a whole lot of pointer fuckery.

The general case is this:
Expand Down