Skip to content

Commit

Permalink
docs: Spelling and grammar fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
scop committed Dec 12, 2022
1 parent 5ac3ed4 commit 6194a28
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/integration.rst
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Actions <https://github.com/features/actions>`_ and automatically uses the
suited output format to decorate code with linting errors. You can also force
the GitHub Actions output with ``yamllint --format github``.

An minimal example workflow using GitHub Actions:
A minimal example workflow using GitHub Actions:

.. code:: yaml
Expand Down
2 changes: 1 addition & 1 deletion yamllint/linter.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ def process_comment(self, comment):
if id in self.all_rules:
self.rules.add(id)

# Use a cache to store problems and flush it only when a end of line is
# Use a cache to store problems and flush it only when an end of line is
# found. This allows the use of yamllint directive to disable some rules on
# some lines.
cache = []
Expand Down
2 changes: 1 addition & 1 deletion yamllint/rules/truthy.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.

"""
Use this rule to forbid non-explictly typed truthy values other than allowed
Use this rule to forbid non-explicitly typed truthy values other than allowed
ones (by default: ``true`` and ``false``), for example ``YES`` or ``off``.
This can be useful to prevent surprises from YAML parsers transforming
Expand Down

0 comments on commit 6194a28

Please sign in to comment.