summaryrefslogtreecommitdiff
path: root/deps/v8/src/compiler/node.h
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/src/compiler/node.h')
-rw-r--r--deps/v8/src/compiler/node.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/deps/v8/src/compiler/node.h b/deps/v8/src/compiler/node.h
index 76ea4bb1a9..b4ff5f7185 100644
--- a/deps/v8/src/compiler/node.h
+++ b/deps/v8/src/compiler/node.h
@@ -149,7 +149,7 @@ class V8_EXPORT_PRIVATE Node final {
Uses uses() { return Uses(this); }
- // Returns true if {owner} is the user of {this} node.
+ // Returns true if {owner} is the only user of {this} node.
bool OwnedBy(Node* owner) const {
return first_use_ && first_use_->from() == owner && !first_use_->next;
}