diff options
Diffstat (limited to 'docs/markdown/Machine-files.md')
-rw-r--r-- | docs/markdown/Machine-files.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/markdown/Machine-files.md b/docs/markdown/Machine-files.md index c77c7dc..ecdb8b4 100644 --- a/docs/markdown/Machine-files.md +++ b/docs/markdown/Machine-files.md @@ -250,7 +250,7 @@ list of strings. **Note:** All occurrences of `\` in the value of all keys will be replaced with a `/` since CMake has a lot of issues with correctly escaping `\` when dealing with variables (even in cases where a path in `CMAKE_C_COMPILER` - is correctly escaped, CMake will still trip up internaly for instance) + is correctly escaped, CMake will still trip up internally for instance) A custom toolchain file should be used (via the `cmake_toolchain_file` property) if `\` support is required. @@ -348,7 +348,7 @@ overriding, but to allow composing files. This composition is done by passing the command line argument multiple times: ```console -meson setup builddir/ --cross-file first.ini --cross-file second.ini --cross-file thrid.ini +meson setup builddir/ --cross-file first.ini --cross-file second.ini --cross-file third.ini ``` In this case `first.ini` will be loaded, then `second.ini`, with |