mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-08-01 06:33:41 +02:00
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>
This commit is contained in:
@@ -1847,7 +1847,7 @@ class CodeGenerator:
|
||||
' *\n'
|
||||
' * Finishes an operation started with %s_call_%s().\n'
|
||||
' *\n'
|
||||
' * Returns: (skip): %%TRUE if the call succeded, %%FALSE if @error is set.\n'
|
||||
' * Returns: (skip): %%TRUE if the call succeeded, %%FALSE if @error is set.\n'
|
||||
%(i.name_lower, m.name_lower, i.name_lower, m.name_lower), False))
|
||||
self.write_gtkdoc_deprecated_and_since_and_close(m, self.outfile, 0)
|
||||
self.outfile.write('gboolean\n'
|
||||
@@ -1909,7 +1909,7 @@ class CodeGenerator:
|
||||
' *\n'
|
||||
' * See %s_call_%s() for the asynchronous version of this method.\n'
|
||||
' *\n'
|
||||
' * Returns: (skip): %%TRUE if the call succeded, %%FALSE if @error is set.\n'
|
||||
' * Returns: (skip): %%TRUE if the call succeeded, %%FALSE if @error is set.\n'
|
||||
%(i.name, m.name, i.name_lower, m.name_lower), False))
|
||||
self.write_gtkdoc_deprecated_and_since_and_close(m, self.outfile, 0)
|
||||
self.outfile.write('gboolean\n'
|
||||
|
Reference in New Issue
Block a user