Skip to content

Commit fa786bd

Browse files
📚 docs(Three): Better wording in _UNSAFE_push NOTE.
1 parent abe265d commit fa786bd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/1-digit/3-Three.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ Three.prototype._isolated_push = function (parent, value) {
226226
Three.prototype._UNSAFE_push = function (parent, value) {
227227
assert(parent._right === this);
228228
parent._middle = parent._middle._UNSAFE_push(this._node(parent.M));
229-
// NOTE the following is dangerous if alternating push and init
229+
// NOTE the following is dangerous if alternating _UNSAFE_push and init
230230
parent._right = new One(value);
231231
// TODO maybe final output can be fixed
232232
return parent;

0 commit comments

Comments
 (0)