Fix a couple of typos in comments. No bug, no review.

This commit is contained in:
Cameron McCormack 2012-05-31 10:32:17 +10:00
Родитель 628405a8bf
Коммит 75dbe30fac
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -94,7 +94,7 @@
os.removeObserver(this, "browser-search-engine-modified");
}
// Make sure to break the cycle from _texbox to us. Otherwise we leak
// Make sure to break the cycle from _textbox to us. Otherwise we leak
// the world. But make sure it's actually pointing to us.
if (this._textbox.mController.input == this)
this._textbox.mController.input = null;

Просмотреть файл

@ -851,7 +851,7 @@ public:
return InsertElementAt(index, item);
}
// A variation on the InsertElementSorted metod defined above.
// A variation on the InsertElementSorted method defined above.
template<class Item>
elem_type *InsertElementSorted(const Item& item) {
return InsertElementSorted(item, nsDefaultComparator<elem_type, Item>());