diff options
Diffstat (limited to 'docs')
-rw-r--r-- | docs/markdown/Code-formatting.md | 2 | ||||
-rw-r--r-- | docs/markdown/Release-notes-for-0.52.0.md | 2 | ||||
-rw-r--r-- | docs/markdown/Release-notes-for-0.58.0.md | 2 | ||||
-rw-r--r-- | docs/markdown/Vs-External.md | 2 | ||||
-rw-r--r-- | docs/refman/jsonschema.py | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/docs/markdown/Code-formatting.md b/docs/markdown/Code-formatting.md index 8191aa2..7e871f2 100644 --- a/docs/markdown/Code-formatting.md +++ b/docs/markdown/Code-formatting.md @@ -38,7 +38,7 @@ include/* The file `.clang-format-ignore` contains a list of patterns matching the files that will be excluded. Files matching the include list (see above) that match -one of the ignore pattern will not be reformatted. Unlike include patters, ignore +one of the ignore pattern will not be reformatted. Unlike include patterns, ignore patterns does not support `**` and a single `*` match any characters including path separators. Empty lines and lines starting with `#` are ignored. diff --git a/docs/markdown/Release-notes-for-0.52.0.md b/docs/markdown/Release-notes-for-0.52.0.md index 667a0d7..5e574ba 100644 --- a/docs/markdown/Release-notes-for-0.52.0.md +++ b/docs/markdown/Release-notes-for-0.52.0.md @@ -60,7 +60,7 @@ improved, and one can reasonably expect projects to compile. ## Splitting of Compiler.get_function_attribute('visibility') On macOS there is no `protected` visibility, which results in the -visbility check always failing. 0.52.0 introduces two changes to +visibility check always failing. 0.52.0 introduces two changes to improve this situation: 1. the "visibility" check no longer includes "protected" diff --git a/docs/markdown/Release-notes-for-0.58.0.md b/docs/markdown/Release-notes-for-0.58.0.md index e9b8ec2..fe2c317 100644 --- a/docs/markdown/Release-notes-for-0.58.0.md +++ b/docs/markdown/Release-notes-for-0.58.0.md @@ -150,7 +150,7 @@ include/* The file `.clang-format-ignore` contains a list of patterns matching the files that will be excluded. Files matching the include list (see above) that match -one of the ignore pattern will not be reformatted. Unlike include patters, ignore +one of the ignore pattern will not be reformatted. Unlike include patterns, ignore patterns does not support `**` and a single `*` match any characters including path separators. Empty lines and lines starting with `#` are ignored. diff --git a/docs/markdown/Vs-External.md b/docs/markdown/Vs-External.md index ab3d191..b11f03f 100644 --- a/docs/markdown/Vs-External.md +++ b/docs/markdown/Vs-External.md @@ -14,7 +14,7 @@ project types select `Makefile project`. Click `Next`. Type your project's name In the `Project name` entry box. In this example we're going to use `testproj`. Next select the `Location` -entry and browse to the root of your projet sources. Make sure that +entry and browse to the root of your project sources. Make sure that the checkbox `Place solution and project in the same directory` is checked. Click `Create`. diff --git a/docs/refman/jsonschema.py b/docs/refman/jsonschema.py index 00c0b5e..e64bf06 100644 --- a/docs/refman/jsonschema.py +++ b/docs/refman/jsonschema.py @@ -26,7 +26,7 @@ class BaseObject(T.TypedDict): class Type(T.TypedDict): obj: str # References an object from `root.objects` - holds: T.Sequence[object] # Mypy does not support recusive dicts, but this should be T.List[Type]... + holds: T.Sequence[object] # Mypy does not support recursive dicts, but this should be T.List[Type]... class Argument(BaseObject): ''' |