From 9c125a26dbf1b6ecc674df2bd1abc02ca48da2cd Mon Sep 17 00:00:00 2001 From: co63oc Date: Sat, 8 Mar 2025 16:44:15 +0800 Subject: Fix typos in comments --- mesonbuild/backend/xcodebackend.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'mesonbuild/backend') 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 -- cgit v1.2.3