summaryrefslogtreecommitdiff
path: root/deps/v8/src/builtins/array-join.tq
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/src/builtins/array-join.tq')
-rw-r--r--deps/v8/src/builtins/array-join.tq2
1 files changed, 1 insertions, 1 deletions
diff --git a/deps/v8/src/builtins/array-join.tq b/deps/v8/src/builtins/array-join.tq
index 23266c4e5a..3d76ff851d 100644
--- a/deps/v8/src/builtins/array-join.tq
+++ b/deps/v8/src/builtins/array-join.tq
@@ -163,7 +163,7 @@ struct Buffer {
const nofSeparatorsInt: intptr = nofSeparators;
const sepsLen: intptr = separatorLength * nofSeparatorsInt;
// Detect integer overflow
- // TODO(tebbi): Replace with overflow-checked multiplication.
+ // TODO(turbofan): Replace with overflow-checked multiplication.
if (sepsLen / separatorLength != nofSeparatorsInt) deferred {
ThrowInvalidStringLength(context);
}