Remouve ouveroused U

Webster was right, gosh dang it!

[ci skip]
This commit is contained in:
Fabian Homborg 2019-03-28 12:27:45 +01:00
parent 21d8b465cc
commit 42acbaa5af
3 changed files with 3 additions and 3 deletions

View file

@ -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

View file

@ -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);

View file

@ -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;
}