summaryrefslogtreecommitdiff
path: root/gio/gfilenamecompleter.c
diff options
context:
space:
mode:
authorPhilip Withnall <withnall@endlessm.com>2020-06-12 14:02:30 +0100
committerPhilip Withnall <withnall@endlessm.com>2020-06-12 15:01:08 +0100
commit00bfb3ab4479fd3796e5c292fce7088209702d10 (patch)
treee53f53b01ddd6be9f184ff742c1cba45067eba7d /gio/gfilenamecompleter.c
parentc6ccff0ef467247be84015f3c45cabece9e582f5 (diff)
downloadglib-00bfb3ab4479fd3796e5c292fce7088209702d10.tar.gz
tree: Fix various typos and outdated terminology
This was mostly machine generated with the following command: ``` codespell \ --builtin clear,rare,usage \ --skip './po/*' --skip './.git/*' --skip './NEWS*' \ --write-changes . ``` using the latest git version of `codespell` as per [these instructions](https://github.com/codespell-project/codespell#user-content-updating). Then I manually checked each change using `git add -p`, made a few manual fixups and dropped a load of incorrect changes. There are still some outdated or loaded terms used in GLib, mostly to do with git branch terminology. They will need to be changed later as part of a wider migration of git terminology. If I’ve missed anything, please file an issue! Signed-off-by: Philip Withnall <withnall@endlessm.com>
Diffstat (limited to 'gio/gfilenamecompleter.c')
-rw-r--r--gio/gfilenamecompleter.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gio/gfilenamecompleter.c b/gio/gfilenamecompleter.c
index 5883b8004..bad2c6e7a 100644
--- a/gio/gfilenamecompleter.c
+++ b/gio/gfilenamecompleter.c
@@ -278,7 +278,7 @@ got_enum (GObject *source_object,
g_object_unref (data->completer->basenames_dir);
g_list_free_full (data->completer->basenames, g_free);
- /* Mark uptodate with no basenames */
+ /* Mark up-to-date with no basenames */
data->completer->basenames_dir = g_object_ref (data->dir);
data->completer->basenames = NULL;
data->completer->basenames_are_escaped = data->should_escape;