diff options
author | Eli Schwartz <eschwartz@archlinux.org> | 2022-01-11 23:51:35 -0500 |
---|---|---|
committer | Dylan Baker <dylan@pnwbakers.com> | 2022-01-11 22:28:00 -0800 |
commit | 71540d184120e66796923f7056c478fe9e79444e (patch) | |
tree | 9379862d56be74787a1698a40df318bfe23eba2e /mesonbuild/modules/gnome.py | |
parent | 63593a55288ee5b89fc9c298dbc300f9c6adaba9 (diff) | |
download | meson-71540d184120e66796923f7056c478fe9e79444e.zip meson-71540d184120e66796923f7056c478fe9e79444e.tar.gz meson-71540d184120e66796923f7056c478fe9e79444e.tar.bz2 |
fix typo in error message
Diffstat (limited to 'mesonbuild/modules/gnome.py')
-rw-r--r-- | mesonbuild/modules/gnome.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/modules/gnome.py b/mesonbuild/modules/gnome.py index 22242bb..e5990f0 100644 --- a/mesonbuild/modules/gnome.py +++ b/mesonbuild/modules/gnome.py @@ -1289,7 +1289,7 @@ class GnomeModule(ExtensionModule): main_xml = kwargs['main_xml'] if main_xml is not None: if main_file is not None: - raise InvalidArguments('gnome.gtkdoc: main_xml and main_xgml are exclusive arguments') + raise InvalidArguments('gnome.gtkdoc: main_xml and main_sgml are exclusive arguments') main_file = main_xml moduleversion = kwargs['module_version'] targetname = modulename + ('-' + moduleversion if moduleversion else '') + '-doc' |