diff options
| author | co63oc <co63oc@users.noreply.github.com> | 2025-03-08 16:44:15 +0800 |
|---|---|---|
| committer | Dylan Baker <dylan@pnwbakers.com> | 2025-03-08 08:09:58 -0800 |
| commit | 9c125a26dbf1b6ecc674df2bd1abc02ca48da2cd (patch) | |
| tree | a45ef9f0fb7bdb9ba295d8755b3de7319db499f9 /mesonbuild/backend/xcodebackend.py | |
| parent | 2afe0a4475f901c0b9d80a465c2c3b16f0952495 (diff) | |
| download | meson-9c125a26dbf1b6ecc674df2bd1abc02ca48da2cd.tar.gz | |
Fix typos in comments
Diffstat (limited to 'mesonbuild/backend/xcodebackend.py')
| -rw-r--r-- | mesonbuild/backend/xcodebackend.py | 2 |
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 |
