Skip to content

Commit

Permalink
Fix the words
Browse files Browse the repository at this point in the history
  • Loading branch information
brndnmtthws committed May 17, 2023
1 parent 796802b commit 1592881
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/text_object.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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("houston, we have a lift-off"); }
if (end->next != nullptr) { CRIT_ERR("Houston, we have lift-off"); }
end->next = obj;
} else {
root->next = obj;
Expand Down

0 comments on commit 1592881

Please sign in to comment.