From 91a68f0089132dc18a41e64ca33813c78ac28a15 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sun, 20 Nov 2016 13:56:02 +0530 Subject: [PATCH] ... --- kitty/history.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kitty/history.c b/kitty/history.c index 3e18c5184..c9b06994b 100644 --- a/kitty/history.c +++ b/kitty/history.c @@ -78,7 +78,7 @@ static inline void historybuf_push(HistoryBuf *self) { static PyObject* change_num_of_lines(HistoryBuf *self, PyObject *val) { -#define change_num_of_lines_doc "Change the number of lines in thsi buffer" +#define change_num_of_lines_doc "Change the number of lines in this buffer" HistoryBuf t = {0}; t.xnum=self->xnum; t.ynum=(index_type) PyLong_AsUnsignedLong(val);