From 714b58917af3c3e8ade3389ce96bb6b3e9832efd Mon Sep 17 00:00:00 2001 From: Christian Date: Fri, 28 Dec 2018 01:17:26 +0100 Subject: [PATCH] fix typo "resulution" --- src/lolwut5.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lolwut5.c b/src/lolwut5.c index 8408b378d..afd0b29a0 100644 --- a/src/lolwut5.c +++ b/src/lolwut5.c @@ -262,7 +262,7 @@ void lolwut5Command(client *c) { return; /* Limits. We want LOLWUT to be always reasonably fast and cheap to execute - * so we have maximum number of columns, rows, and output resulution. */ + * so we have maximum number of columns, rows, and output resolution. */ if (cols < 1) cols = 1; if (cols > 1000) cols = 1000; if (squares_per_row < 1) squares_per_row = 1;