Skip to content

Commit cce3383

Browse files
Frosty2500s-heppner
authored andcommitted
fix some typos
1 parent eaa59e3 commit cce3383

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ the further steps via the comments.
9494
In order to effectively communicate, there are some conventions to respect when writing
9595
commit messages and pull requests.
9696

97-
Similarily to when creating an issue, the commit title, as well as the PR title should
97+
Similarly to when creating an issue, the commit title, as well as the PR title should
9898
be as short as possible, ideally 72 characters or fewer using imperative language.
9999
If a specific module is affected, please mention it at the beginning of the title.
100100

compliance_tool/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Following functionalities are supported:
66
* create an aasx file with xml or json files compliant to the official schema containing example Asset Administration
77
Shell elements
88
* check if a given xml or json file is compliant to the official schema
9-
* check if a given xml, json or aasx file is readable even if it is not compliant to the offical schema
9+
* check if a given xml, json or aasx file is readable even if it is not compliant to the official schema
1010
* check if the data in a given xml, json or aasx file is the same as the example data
1111
* check if two given xml, json or aasx files contain the same Asset Administration Shell elements in any order
1212

compliance_tool/aas_compliance_tool/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ def parse_cli_arguments() -> argparse.ArgumentParser:
7171
'f or file_compare: checks if two given files contain the same aas elements in any order')
7272
parser.add_argument('file_1', help="path to file 1")
7373
parser.add_argument('file_2', nargs='?', default=None, help="path to file 2: is required if action f or files is "
74-
"choosen")
74+
"chosen")
7575
parser.add_argument('-v', '--verbose', help="Print detailed information for each check. Multiple -v options "
7676
"increase the verbosity. 1: Detailed error information, 2: Additional "
7777
"detailed success information", action='count', default=0)

server/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ The server currently implements the following interfaces:
77
- [Submodel Repository Service][5]
88

99
It uses the [HTTP API][1] and the [AASX][7], [JSON][8], and [XML][9] Adapters of the [BaSyx Python SDK][3], to serve regarding files from a given directory.
10-
The files are only read, chages won't persist.
10+
The files are only read, changes won't persist.
1111

1212
Alternatively, the container can also be told to use the [Local-File Backend][2] instead, which stores AAS and Submodels as individual JSON files and allows for persistent changes (except supplementary files, i.e. files referenced by `File` submodel elements).
1313
See [below](#options) on how to configure this.

0 commit comments

Comments
 (0)