Skip to content

Commit

Permalink
Rectified minor mistakes in docstrings
Browse files Browse the repository at this point in the history
  • Loading branch information
bharadwajyarlagadda committed Sep 29, 2016
1 parent 32b2758 commit ee4662b
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Changed
- Moved all the global attributes from ``html/root/attributes.py`` to
``html/root/global_attributes.py``.

- In the classs for constructing ``anchor`` tag:
- In the class for constructing ``anchor`` tag:

- The user can be displayed with warnings for charset attribute.
- Used custom exceptions for all the attributes.
Expand All @@ -31,7 +31,7 @@ Removed
^^^^^^^

- Removed ``html/root/attributes.py``.
- Removed ``validate_values()`` method from both ``html.tags.anchor.A`` and
- Removed ``validate_values()`` method from both ``html.tags.anchor.A()`` and
``html.tags.button.Button()`` classes.

v0.4.2 (2016-09-24)
Expand Down
2 changes: 1 addition & 1 deletion korona/html/tags/abbreviate.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class Abbr(object):
.. versionadded:: 0.1.0
.. versionchanged:: 0.2.0
Renamed :func:`construct_tag()` to :func:`construct()`.
Renamed :func:`construct_tag` to :func:`construct`.
"""
def __init__(self, text=None):
self.tag = 'abbr'
Expand Down
2 changes: 1 addition & 1 deletion korona/html/tags/acronym.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class Acronym(object):
.. versionadded:: 0.1.0
.. versionchanged:: 0.2.0
Renamed :func:`construct_tag()` to :func:`construct()`.
Renamed :func:`construct_tag` to :func:`construct`.
"""
def __init__(self, text=None):
self.tag = 'acronym'
Expand Down
2 changes: 1 addition & 1 deletion korona/html/tags/anchor.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ class A(object):
.. versionchanged:: 0.4.3-dev
Now the user can be displayed with warnings for charset attribute.
Used custom exceptions for all the attributes. Removed the method
:func:`validate_values()`.
:func:`validate_values`.
"""
def __init__(self,
charset=None,
Expand Down

0 comments on commit ee4662b

Please sign in to comment.