aboutsummaryrefslogtreecommitdiff
path: root/docs/yaml/functions
diff options
context:
space:
mode:
authorElliott Sales de Andrade <quantum.analyst@gmail.com>2022-10-22 16:42:21 -0400
committerJussi Pakkanen <jpakkane@gmail.com>2022-10-23 03:06:39 +0300
commitfa2585d0b364143fb588b8bb611eaa4d1c277811 (patch)
tree529fe5facf7c43c453a8569073b31fc122efcc68 /docs/yaml/functions
parentb98356e0557399803895755a5f513841345fba1b (diff)
downloadmeson-fa2585d0b364143fb588b8bb611eaa4d1c277811.zip
meson-fa2585d0b364143fb588b8bb611eaa4d1c277811.tar.gz
meson-fa2585d0b364143fb588b8bb611eaa4d1c277811.tar.bz2
Fix typos in docs
Diffstat (limited to 'docs/yaml/functions')
-rw-r--r--docs/yaml/functions/_build_target_base.yaml2
-rw-r--r--docs/yaml/functions/configuration_data.yaml2
-rw-r--r--docs/yaml/functions/custom_target.yaml2
-rw-r--r--docs/yaml/functions/environment.yaml4
-rw-r--r--docs/yaml/functions/is_disabler.yaml2
-rw-r--r--docs/yaml/functions/is_variable.yaml2
6 files changed, 7 insertions, 7 deletions
diff --git a/docs/yaml/functions/_build_target_base.yaml b/docs/yaml/functions/_build_target_base.yaml
index d299a85..4e7afad 100644
--- a/docs/yaml/functions/_build_target_base.yaml
+++ b/docs/yaml/functions/_build_target_base.yaml
@@ -145,7 +145,7 @@ kwargs:
type: bool
since: 0.42.0
default: true
- description: Controlls whether Meson adds the current source and build directories to the include path
+ description: Controls whether Meson adds the current source and build directories to the include path
include_directories:
type: list[inc | str]
diff --git a/docs/yaml/functions/configuration_data.yaml b/docs/yaml/functions/configuration_data.yaml
index e16a69f..61297b5 100644
--- a/docs/yaml/functions/configuration_data.yaml
+++ b/docs/yaml/functions/configuration_data.yaml
@@ -10,6 +10,6 @@ optargs:
type: dict[str | bool | int]
since: 0.49.0
description: |
- Optional dictionary to specifiy an inital data set. If
+ Optional dictionary to specify an initial data set. If
provided, each key/value pair is added into the [[@cfg_data]] object
as if the [[cfg_data.set]] method was called for each of them.
diff --git a/docs/yaml/functions/custom_target.yaml b/docs/yaml/functions/custom_target.yaml
index dae6a4f..7d05282 100644
--- a/docs/yaml/functions/custom_target.yaml
+++ b/docs/yaml/functions/custom_target.yaml
@@ -6,7 +6,7 @@ description: |
The name of custom target might not be used by every backends, for instance with
the Ninja backend, `subdir/meson.build` containing the example below,
`ninja -C builddir foo` or `ninja -C builddir subdir/foo` won't work,
- it is instead `ninja -C builddir subdir/file.txt`. Howerver, `meson compile subdir/foo`
+ it is instead `ninja -C builddir subdir/file.txt`. However, `meson compile subdir/foo`
is accepted.
```meson
custom_target('foo', output: 'file.txt', ...)
diff --git a/docs/yaml/functions/environment.yaml b/docs/yaml/functions/environment.yaml
index 5c3a43d..4c18ffc 100644
--- a/docs/yaml/functions/environment.yaml
+++ b/docs/yaml/functions/environment.yaml
@@ -12,7 +12,7 @@ optargs:
description: |
If provided, each key/value pair is added into the [[@env]] object
as if [[env.set]] method was called for each of them.
- Since *0.62.0* list of strings is allowed in dictionnary values. In that
+ Since *0.62.0* list of strings is allowed in dictionary values. In that
case values are joined using the separator.
kwargs:
@@ -31,5 +31,5 @@ kwargs:
description: |
Must be one of 'set', 'prepend', or 'append'
(defaults to 'set'). Controls if initial values defined in the first
- positional argument are prepended, appended or repace the current value
+ positional argument are prepended, appended or replace the current value
of the environment variable.
diff --git a/docs/yaml/functions/is_disabler.yaml b/docs/yaml/functions/is_disabler.yaml
index 9f1dd93..2786345 100644
--- a/docs/yaml/functions/is_disabler.yaml
+++ b/docs/yaml/functions/is_disabler.yaml
@@ -6,4 +6,4 @@ description: Returns true if a variable is a disabler and false otherwise.
posargs:
var:
type: any
- description: The varaible to test
+ description: The variable to test
diff --git a/docs/yaml/functions/is_variable.yaml b/docs/yaml/functions/is_variable.yaml
index 6c338ee..9012679 100644
--- a/docs/yaml/functions/is_variable.yaml
+++ b/docs/yaml/functions/is_variable.yaml
@@ -6,4 +6,4 @@ description: Returns true if a variable of the given name exists and false other
posargs:
var:
type: str
- description: The varaible to test
+ description: The variable to test