summaryrefslogtreecommitdiff
path: root/mesonbuild/backend/xcodebackend.py
diff options
context:
space:
mode:
Diffstat (limited to 'mesonbuild/backend/xcodebackend.py')
-rw-r--r--mesonbuild/backend/xcodebackend.py2
1 files changed, 1 insertions, 1 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