aboutsummaryrefslogtreecommitdiffstats
path: root/src/window.c
diff options
context:
space:
mode:
authorPavel Janík <[email protected]>2001-11-01 14:24:02 +0000
committerPavel Janík <[email protected]>2001-11-01 14:24:02 +0000
commit8b8bd9c6eda85dd4c496dc0e4f70af28b13dbcbb (patch)
tree3f9c476ea9797eb01a0fc3039789fbe860b330f7 /src/window.c
parent086b25d38730971b63621f79a15c9846e80b20b1 (diff)
(grow_mini_window): Fix typo in comment.
Diffstat (limited to 'src/window.c')
-rw-r--r--src/window.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/window.c b/src/window.c
index 5f122976d9..4ac39dde88 100644
--- a/src/window.c
+++ b/src/window.c
@@ -3751,7 +3751,7 @@ grow_mini_window (w, delta)
{
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);
}