From b6b00c53bdd386b0570544d561e4a9d176d13291 Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Mon, 18 May 2009 20:18:08 +0000 Subject: [PATCH] Fix comment. --- cmd-resize-pane.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/cmd-resize-pane.c b/cmd-resize-pane.c index 7a1857af..f3b82888 100644 --- a/cmd-resize-pane.c +++ b/cmd-resize-pane.c @@ -1,4 +1,4 @@ -/* $Id: cmd-resize-pane.c,v 1.3 2009-05-04 17:58:26 nicm Exp $ */ +/* $Id: cmd-resize-pane.c,v 1.4 2009-05-18 20:18:08 nicm Exp $ */ /* * Copyright (c) 2009 Nicholas Marriott @@ -98,9 +98,9 @@ cmd_resize_pane_exec(struct cmd *self, struct cmd_ctx *ctx) if (data->flags & CMD_UPPERDFLAG) { /* - * If this is not the last window, keep trying to increase size - * and remove it from the next windows. If it is the last, do - * so on the previous window. + * If this is not the last pane, keep trying to increase size + * and remove it from the next panes. If it is the last, do + * so on the previous pane. */ if (TAILQ_NEXT(wp, entry) == NULL) { if (wp == TAILQ_FIRST(&wl->window->panes)) { @@ -123,9 +123,9 @@ cmd_resize_pane_exec(struct cmd *self, struct cmd_ctx *ctx) } } else { /* - * If this is not the last window, keep trying to reduce size - * and add to the following window. If it is the last, do so on - * the previous window. + * If this is not the last pane, keep trying to reduce size + * and add to the following pane. If it is the last, do so on + * the previous pane. */ wq = TAILQ_NEXT(wp, entry); if (wq == NULL) {