From 42acbaa5af59a93c8ecf74ccc696ab7df15a23eb Mon Sep 17 00:00:00 2001 From: Fabian Homborg Date: Thu, 28 Mar 2019 12:27:45 +0100 Subject: [PATCH] Remouve ouveroused U Webster was right, gosh dang it! [ci skip] --- src/complete.h | 2 +- src/output.cpp | 2 +- src/screen.cpp | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/complete.h b/src/complete.h index 3b1655f5d..2563f34ca 100644 --- a/src/complete.h +++ b/src/complete.h @@ -73,7 +73,7 @@ class completion_t { wcstring description; /// The type of fuzzy match. string_fuzzy_match_t match; - /// Flags determining the completion behaviour. + /// Flags determining the completion behavior. /// /// Determines whether a space should be inserted after this completion if it is the only /// possible completion using the COMPLETE_NO_SPACE flag. The COMPLETE_NO_CASE can be used to diff --git a/src/output.cpp b/src/output.cpp index 1fadaa34a..80f0f51d8 100644 --- a/src/output.cpp +++ b/src/output.cpp @@ -180,7 +180,7 @@ void outputter_t::set_color(rgb_color_t c, rgb_color_t c2) { was_italics = false; was_dim = false; was_reverse = false; - // If we exit attibute mode, we must first set a color, or previously coloured text might + // If we exit attibute mode, we must first set a color, or previously colored text might // lose it's color. Terminals are weird... write_foreground_color(*this, 0); writembs(*this, exit_attribute_mode); diff --git a/src/screen.cpp b/src/screen.cpp index bd34c94a1..47d324d17 100644 --- a/src/screen.cpp +++ b/src/screen.cpp @@ -463,7 +463,7 @@ static void s_move(screen_t *s, int new_x, int new_y) { if (y_steps > 0 && (std::strcmp(cursor_down, "\n") == 0)) { // This is very strange - it seems some (all?) consoles use a simple newline as the cursor // down escape. This will of course move the cursor to the beginning of the line as well as - // moving it down one step. The cursor_up does not have this behaviour... + // moving it down one step. The cursor_up does not have this behavior... s->actual.cursor.x = 0; }