From 00166b49b5a17cf7e0f947c44ecc18115e917bc8 Mon Sep 17 00:00:00 2001 From: bi4k8 Date: Fri, 5 May 2023 01:28:21 +0000 Subject: [PATCH] text_object: fix typo in cutesy error message --- src/text_object.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/text_object.cc b/src/text_object.cc index 2ddbf588..c417b329 100644 --- a/src/text_object.cc +++ b/src/text_object.cc @@ -72,7 +72,7 @@ int append_object(struct text_object *root, struct text_object *obj) { /* update pointers of the list to append to */ if (end != nullptr) { - if (end->next != nullptr) { CRIT_ERR("huston, we have a lift-off"); } + if (end->next != nullptr) { CRIT_ERR("houston, we have a lift-off"); } end->next = obj; } else { root->next = obj;