summaryrefslogtreecommitdiff
path: root/deps/v8/src/spaces.cc
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2011-12-19 13:06:19 -0800
committerRyan Dahl <ry@tinyclouds.org>2011-12-19 13:06:37 -0800
commit21e7292ea0ec1054fef8ad2af2ff68f6822c2449 (patch)
tree6c0bebde1d5a4825cf882aff16081cbd4810e9d6 /deps/v8/src/spaces.cc
parent07b199738887ecce3d14d54cbf1f97f159759a19 (diff)
downloadnode-new-21e7292ea0ec1054fef8ad2af2ff68f6822c2449.tar.gz
Upgrade V8 to 3.8.1
Diffstat (limited to 'deps/v8/src/spaces.cc')
-rw-r--r--deps/v8/src/spaces.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/deps/v8/src/spaces.cc b/deps/v8/src/spaces.cc
index a5712a0f53..84b0f1bcb4 100644
--- a/deps/v8/src/spaces.cc
+++ b/deps/v8/src/spaces.cc
@@ -752,7 +752,7 @@ int PagedSpace::CountTotalPages() {
void PagedSpace::ReleasePage(Page* page) {
ASSERT(page->LiveBytes() == 0);
- // Adjust list of unswept pages if the page is it's head or tail.
+ // Adjust list of unswept pages if the page is the head of the list.
if (first_unswept_page_ == page) {
first_unswept_page_ = page->next_page();
if (first_unswept_page_ == anchor()) {