Skip to content

Commit

Permalink
docs: correct casing on proper nouns (#320)
Browse files Browse the repository at this point in the history
* docs: correcting Semantic Versioning casing

Semantic Versioning is the name of the specification.
Therefore it is a proper noun.
This patch corrects the incorrect casing for Semantic Versioning.

* docs: correcting Python casing

This patch corrects the incorrect casing for Python.
  • Loading branch information
DeveloperC286 committed Jan 31, 2021
1 parent 22c9448 commit d51b999
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.rst
Expand Up @@ -3,7 +3,7 @@ Python Semantic Release

|Test Status| |PyPI Version| |conda-forge version| |Read the Docs Status|

Automatic semantic versioning for python projects. This is a python
Automatic Semantic Versioning for Python projects. This is a Python
implementation of `semantic-release`_ for JS by Stephan Bönnemann. If
you find this topic interesting you should check out his `talk from
JSConf Budapest`_.
Expand Down
2 changes: 1 addition & 1 deletion action.yml
@@ -1,6 +1,6 @@
name: 'Python Semantic Release'

description: 'Automatic semantic versioning for python projects'
description: 'Automatic Semantic Versioning for Python projects'

inputs:
directory:
Expand Down
2 changes: 1 addition & 1 deletion docs/commit-log-parsing.rst
Expand Up @@ -39,7 +39,7 @@ Writing your own parser
If you think this is all well and cool, but the angular style is not for you,
no need to worry because custom parsers are supported.

A parser is basically a python function that takes the commit message as the
A parser is basically a Python function that takes the commit message as the
only argument and returns the information extracted from the commit. The format
of the output should be a :py:class:`semantic_release.history.parser_helpers.ParsedCommit`
object with the following parameters::
Expand Down
2 changes: 1 addition & 1 deletion docs/index.rst
Expand Up @@ -28,7 +28,7 @@ your project, for example ``setup.py``::
)

Python Semantic Release is configured using ``setup.cfg`` or ``pyproject.toml``.
Set :ref:`config-version_variable` to the location of your version variable inside any python file::
Set :ref:`config-version_variable` to the location of your version variable inside any Python file::

[semantic_release]
version_variable = setup.py:__version__
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -29,7 +29,7 @@ def _read_long_description():
url="http://github.com/relekang/python-semantic-release",
author="Rolf Erik Lekang",
author_email="me@rolflekang.com",
description="Automatic semantic versioning for python projects",
description="Automatic Semantic Versioning for Python projects",
long_description=_read_long_description(),
packages=find_packages(exclude=("tests",)),
license="MIT",
Expand Down

0 comments on commit d51b999

Please sign in to comment.