Bug 1797752 - Fix a comment as per review feedback that I missed.

DONTBUILD
MANUAL PUSH: Typo fix CLOSED TREE
This commit is contained in:
Emilio Cobos Álvarez 2022-12-29 14:04:15 +01:00
Родитель a1593f002b
Коммит 9e941efd1d
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -32,7 +32,7 @@ void DepthOrderedFrameList::Remove(nsIFrame* aFrame) {
}
nsIFrame* DepthOrderedFrameList::PopShallowestRoot() {
// List is sorted in order of decreasing depth, so there are no deeper
// List is sorted in order of decreasing depth, so there are no shallower
// frames than the last one.
const FrameAndDepth& lastFAD = mList.PopLastElement();
nsIFrame* frame = lastFAD.mFrame;