Index: src/spaces.cc |
diff --git a/src/spaces.cc b/src/spaces.cc |
index a5712a0f5346d83adacf26250cda82894971e40b..d5e3658944c9a500c94c90ef9a2ee6577f9bae56 100644 |
--- a/src/spaces.cc |
+++ b/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 it's head. |
Erik Corry
2011/12/19 11:23:58
it's ->its.
Actually "if the page is the head of
|
if (first_unswept_page_ == page) { |
first_unswept_page_ = page->next_page(); |
if (first_unswept_page_ == anchor()) { |