summaryrefslogtreecommitdiff
path: root/mesonbuild
diff options
context:
space:
mode:
authorco63oc <co63oc@users.noreply.github.com>2025-03-08 16:44:15 +0800
committerDylan Baker <dylan@pnwbakers.com>2025-03-08 08:09:58 -0800
commit9c125a26dbf1b6ecc674df2bd1abc02ca48da2cd (patch)
treea45ef9f0fb7bdb9ba295d8755b3de7319db499f9 /mesonbuild
parent2afe0a4475f901c0b9d80a465c2c3b16f0952495 (diff)
downloadmeson-9c125a26dbf1b6ecc674df2bd1abc02ca48da2cd.tar.gz
Fix typos in comments
Diffstat (limited to 'mesonbuild')
-rw-r--r--mesonbuild/backend/xcodebackend.py2
-rw-r--r--mesonbuild/mparser.py2
-rwxr-xr-xmesonbuild/scripts/python_info.py2
3 files changed, 3 insertions, 3 deletions
diff --git a/mesonbuild/backend/xcodebackend.py b/mesonbuild/backend/xcodebackend.py
index 9f2e0a1b6..7108e72a7 100644
--- a/mesonbuild/backend/xcodebackend.py
+++ b/mesonbuild/backend/xcodebackend.py
@@ -1792,7 +1792,7 @@ class XCodeBackend(backends.Backend):
header_arr = PbxArray()
for i in header_dirs:
np = os.path.normpath(i)
- # Make sure Xcode will not split single path into separate entries, escaping space with a slash is not enought
+ # Make sure Xcode will not split single path into separate entries, escaping space with a slash is not enough
item = f'"\\\"{np}\\\""' if ' ' in np else f'"{np}"'
header_arr.add_item(item)
return header_arr
diff --git a/mesonbuild/mparser.py b/mesonbuild/mparser.py
index 0ffaceb7c..f1c60712c 100644
--- a/mesonbuild/mparser.py
+++ b/mesonbuild/mparser.py
@@ -1102,7 +1102,7 @@ class Parser:
e.ast = block
raise
- # Remaining whitespaces will not be catched since there are no more nodes
+ # Remaining whitespaces will not be caught since there are no more nodes
for ws_token in self.current_ws:
block.append_whitespaces(ws_token)
self.current_ws = []
diff --git a/mesonbuild/scripts/python_info.py b/mesonbuild/scripts/python_info.py
index 6aab38045..b006bc38a 100755
--- a/mesonbuild/scripts/python_info.py
+++ b/mesonbuild/scripts/python_info.py
@@ -100,7 +100,7 @@ if sys.version_info >= (3, 2):
except Exception:
pass
-# pypy supports modules targetting the limited api but
+# pypy supports modules targeting the limited api but
# does not use a special suffix to distinguish them:
# https://doc.pypy.org/en/latest/cpython_differences.html#permitted-abi-tags-in-extensions
if is_pypy: