summaryrefslogtreecommitdiff
path: root/mesonbuild/compilers
diff options
context:
space:
mode:
authorAndrew McNulty <amcn102@gmail.com>2024-09-14 13:13:13 +0200
committerJussi Pakkanen <jpakkane@gmail.com>2024-09-14 20:20:38 +0300
commit050b788ed8065901e57f7422a42921bc40ebac8f (patch)
tree5fb1350521f22b332360174905b4c13a7da939a8 /mesonbuild/compilers
parent781335446064b0f6dcee3c22975dd9f575932a74 (diff)
downloadmeson-050b788ed8065901e57f7422a42921bc40ebac8f.tar.gz
Fix various incorrect uses of `its` vs `it's`.
These errors can make reading comments and documentation unnecessarily confusing for users and contributors who do not speak English as their first language.
Diffstat (limited to 'mesonbuild/compilers')
-rw-r--r--mesonbuild/compilers/detect.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/mesonbuild/compilers/detect.py b/mesonbuild/compilers/detect.py
index c1d004b32..41ecf2528 100644
--- a/mesonbuild/compilers/detect.py
+++ b/mesonbuild/compilers/detect.py
@@ -280,7 +280,7 @@ def _detect_c_or_cpp_compiler(env: 'Environment', lang: str, for_machine: Machin
compiler_name = os.path.basename(compiler[0])
if any(os.path.basename(x) in {'cl', 'cl.exe', 'clang-cl', 'clang-cl.exe'} for x in compiler):
- # Watcom C provides it's own cl.exe clone that mimics an older
+ # Watcom C provides its own cl.exe clone that mimics an older
# version of Microsoft's compiler. Since Watcom's cl.exe is
# just a wrapper, we skip using it if we detect its presence
# so as not to confuse Meson when configuring for MSVC.
@@ -1026,7 +1026,7 @@ def detect_rust_compiler(env: 'Environment', for_machine: MachineChoice) -> Rust
version = search_version(out)
cls: T.Type[RustCompiler] = rust.RustCompiler
- # Clippy is a wrapper around rustc, but it doesn't have rustc in it's
+ # Clippy is a wrapper around rustc, but it doesn't have rustc in its
# output. We can otherwise treat it as rustc.
if 'clippy' in out:
# clippy returns its own version and not the rustc version by