aboutsummaryrefslogtreecommitdiff
path: root/docs/refman/jsonschema.py
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/refman/jsonschema.py
parentb98356e0557399803895755a5f513841345fba1b (diff)
downloadmeson-fa2585d0b364143fb588b8bb611eaa4d1c277811.zip
meson-fa2585d0b364143fb588b8bb611eaa4d1c277811.tar.gz
meson-fa2585d0b364143fb588b8bb611eaa4d1c277811.tar.bz2
Fix typos in docs
Diffstat (limited to 'docs/refman/jsonschema.py')
-rw-r--r--docs/refman/jsonschema.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/refman/jsonschema.py b/docs/refman/jsonschema.py
index 1b94856..00c0b5e 100644
--- a/docs/refman/jsonschema.py
+++ b/docs/refman/jsonschema.py
@@ -30,10 +30,10 @@ class Type(T.TypedDict):
class Argument(BaseObject):
'''
- Object that represents any type of a single function or method argumet.
+ Object that represents any type of a single function or method argument.
'''
type: T.List[Type] # A non-empty list of types that are supported.
- type_str: str # Formated version of `type`. Is guranteed to not contain any whitespaces.
+ type_str: str # Formatted version of `type`. Is guaranteed to not contain any whitespaces.
required: bool
default: T.Optional[str]
min_varargs: T.Optional[int] # Only relevant for varargs, must be `null` for all other types of arguments