fix typo in comment - ii - irc it, simple FIFO based irc client
(HTM) git clone git://git.suckless.org/ii
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
(DIR) LICENSE
---
(DIR) commit 25ee995ead94f3343edee8aed797eea1140a6bfb
(DIR) parent 804cb7266640c54d98fb5c4edf2ba7b5ad52649f
(HTM) Author: Hiltjo Posthuma <hiltjo@codemadness.org>
Date: Tue, 22 May 2018 08:43:32 +0200
fix typo in comment
pointed out by halbeno
Diffstat:
M ii.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
(DIR) diff --git a/ii.c b/ii.c
@@ -28,7 +28,7 @@ char *argv0;
size_t strlcpy(char *, const char *, size_t);
#define IRC_CHANNEL_MAX 200
-#define IRC_MSG_MAX 512 /* quaranteed to be <= than PIPE_BUF */
+#define IRC_MSG_MAX 512 /* guaranteed to be <= than PIPE_BUF */
#define PING_TIMEOUT 300
enum { TOK_NICKSRV = 0, TOK_USER, TOK_CMD, TOK_CHAN, TOK_ARG, TOK_TEXT, TOK_LAST };