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

fix typos in schema comment #108

Merged
merged 1 commit into from
Dec 21, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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