Skip to content

Commit

Permalink
fix typo "resulution"
Browse files Browse the repository at this point in the history
  • Loading branch information
christian-fei committed Dec 28, 2018
1 parent e504583 commit 714b589
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lolwut5.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 714b589

Please sign in to comment.