Skip to content
This repository has been archived by the owner on Dec 2, 2022. It is now read-only.

Commit

Permalink
fix typos in schema comment (#108)
Browse files Browse the repository at this point in the history
  • Loading branch information
ziegenberg authored Dec 21, 2021
1 parent 3178d3f commit b6918d6
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion src/ansibleschemas/ansiblelint.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Used to generate JSON Validations chema for ansible-lint config files
# Used to generate JSON Validations Schema for ansible-lint config files
# https://github.com/ansible-community/ansible-lint/blob/master/.ansible-lint
from typing import Any, Dict, List, Mapping, Optional

Expand Down
2 changes: 1 addition & 1 deletion src/ansibleschemas/galaxy.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Used to generate JSON Validations chema for requirements.
# Used to generate JSON Validations Schema for requirements.
import json
from enum import Enum
from typing import List, Mapping, Optional
Expand Down
2 changes: 1 addition & 1 deletion src/ansibleschemas/meta.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Used to generate JSON Validations chema for requirements.
# Used to generate JSON Validations Schema for requirements.
import sys
from collections.abc import Iterable
from enum import Enum
Expand Down
2 changes: 1 addition & 1 deletion src/ansibleschemas/molecule.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Used to generate JSON Validations chema for requirements.
# Used to generate JSON Validations Schema for molecule config files.
import re
import sys
from typing import Any, List, Mapping, Optional, Union
Expand Down
2 changes: 1 addition & 1 deletion src/ansibleschemas/playbook.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Used to generate JSON Validations chema for requirements.
# Used to generate JSON Validations Schema for playbooks.
import sys
from typing import Any, List, Mapping, Optional, Union

Expand Down
2 changes: 1 addition & 1 deletion src/ansibleschemas/requirements.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Used to generate JSON Validations chema for requirements.
# Used to generate JSON Validations Schema for requirements.
import sys
from typing import List, Optional, Union

Expand Down
2 changes: 1 addition & 1 deletion src/ansibleschemas/tasks.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Used to generate JSON Validations Schema for requirements.
# Used to generate JSON Validations Schema for tasks.
from typing import Any, List, Mapping, Optional, Union

from pydantic import BaseModel, Extra, Field, create_model
Expand Down
2 changes: 1 addition & 1 deletion src/ansibleschemas/vars.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Used to generate JSON Validations chema for requirements.
# Used to generate JSON Validations Schema for requirements.
import re
from typing import Any, Mapping, Union

Expand Down
2 changes: 1 addition & 1 deletion src/ansibleschemas/zuul.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Used to generate JSON Validations schema for Zuul config files.
# Used to generate JSON Validations Schema for Zuul config files.
import sys
from typing import Any, List, Mapping, Optional, Union

Expand Down

0 comments on commit b6918d6

Please sign in to comment.