diff options
author | Andreas Deininger <adeininger@urbanonline.de> | 2022-12-12 17:14:20 +0100 |
---|---|---|
committer | Eli Schwartz <eschwartz93@gmail.com> | 2022-12-12 12:10:37 -0500 |
commit | b249470a4c1de39a0a56d9237f767fe04d6efa05 (patch) | |
tree | 8c215f06683f0451ca1c471d1a4381754f73db09 /docs/markdown/snippets | |
parent | 41ab2ef8af22020d28153ab5872dbc5bef4d491e (diff) | |
download | meson-b249470a4c1de39a0a56d9237f767fe04d6efa05.zip meson-b249470a4c1de39a0a56d9237f767fe04d6efa05.tar.gz meson-b249470a4c1de39a0a56d9237f767fe04d6efa05.tar.bz2 |
Fixing typos
Convert http to https in some links
Diffstat (limited to 'docs/markdown/snippets')
-rw-r--r-- | docs/markdown/snippets/devenv.md | 2 | ||||
-rw-r--r-- | docs/markdown/snippets/rust_bindgen_str_include.md | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/docs/markdown/snippets/devenv.md b/docs/markdown/snippets/devenv.md index d8a38ba..b385203 100644 --- a/docs/markdown/snippets/devenv.md +++ b/docs/markdown/snippets/devenv.md @@ -11,5 +11,5 @@ directory. For example, `meson devenv -C builddir --workdir .` can be used to remain in the current dir (often source dir) instead. `--dump` now prints shell commands like `FOO="/prepend/path:$FOO:/append/path"`, -using the litteral `$FOO` instead of current value of `FOO` from environment. +using the literal `$FOO` instead of current value of `FOO` from environment. This makes easier to evaluate those expressions in a different environment. diff --git a/docs/markdown/snippets/rust_bindgen_str_include.md b/docs/markdown/snippets/rust_bindgen_str_include.md index aad5da9..2a42951 100644 --- a/docs/markdown/snippets/rust_bindgen_str_include.md +++ b/docs/markdown/snippets/rust_bindgen_str_include.md @@ -1,4 +1,4 @@ ## String arguments to the rust.bindgen include_directories argument Most other cases of include_directories accept strings as well as -`IncludeDirectory` objects, so lets do that here too for consistancy. +`IncludeDirectory` objects, so lets do that here too for consistency. |