Skip to content

Commit

Permalink
Minor wording change in the docstrings for Abbreviate() and Acronym()…
Browse files Browse the repository at this point in the history
… classes
  • Loading branch information
bharadwajyarlagadda committed Sep 29, 2016
1 parent 9255f98 commit dc75a41
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
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 the method construct_tag to 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 the method construct_tag to construct.
Renamed :func:`construct_tag()` to :func:`construct()`.
"""
def __init__(self, text=None):
self.tag = 'acronym'
Expand Down

0 comments on commit dc75a41

Please sign in to comment.