diff options
| author | Andrew McNulty <amcn102@gmail.com> | 2024-09-14 13:13:13 +0200 |
|---|---|---|
| committer | Jussi Pakkanen <jpakkane@gmail.com> | 2024-09-14 20:20:38 +0300 |
| commit | 050b788ed8065901e57f7422a42921bc40ebac8f (patch) | |
| tree | 5fb1350521f22b332360174905b4c13a7da939a8 /mesonbuild/programs.py | |
| parent | 781335446064b0f6dcee3c22975dd9f575932a74 (diff) | |
| download | meson-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/programs.py')
| -rw-r--r-- | mesonbuild/programs.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/programs.py b/mesonbuild/programs.py index fbe241d99..8f7d1c36c 100644 --- a/mesonbuild/programs.py +++ b/mesonbuild/programs.py @@ -119,7 +119,7 @@ class ExternalProgram(mesonlib.HoldableObject): @classmethod def from_bin_list(cls, env: 'Environment', for_machine: MachineChoice, name: str) -> 'ExternalProgram': # There is a static `for_machine` for this class because the binary - # always runs on the build platform. (It's host platform is our build + # always runs on the build platform. (Its host platform is our build # platform.) But some external programs have a target platform, so this # is what we are specifying here. command = env.lookup_binary_entry(for_machine, name) |
