# HG changeset patch # User Pavel Jank # Date 1004624618 0 # Node ID 4e8c66bd2abb9365b7a28857ac0fe32c1857b0e9 # Parent 04c9ddfb2b2a34aa1761fdc2435ed3cdb6d9811b (grow_mini_window): Fix typo in comment. diff -r 04c9ddfb2b2a -r 4e8c66bd2abb src/window.c --- a/src/window.c Thu Nov 01 14:07:22 2001 +0000 +++ b/src/window.c Thu Nov 01 14:23:38 2001 +0000 @@ -3751,7 +3751,7 @@ { int min_height = window_min_size (root, 0, 0, 0); if (XFASTINT (root->height) - delta < min_height) - /* Note that the roor window may already be smaller than + /* Note that the root window may already be smaller than min_height. */ delta = max (0, XFASTINT (root->height) - min_height); }