Skip to content

Commit 6e24773

Browse files
author
Alexander Smishlajev
committed
typos in docstrings
1 parent ac98a46 commit 6e24773

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

roundup/configuration.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Roundup Issue Tracker configuration support
22
#
3-
# $Id: configuration.py,v 1.39 2006-12-18 06:06:03 richard Exp $
3+
# $Id: configuration.py,v 1.40 2007-02-19 20:27:53 a1s Exp $
44
#
55
__docformat__ = "restructuredtext"
66

@@ -39,7 +39,7 @@ class InvalidOptionError(ConfigurationError, KeyError, AttributeError):
3939
4040
Configuration options may be accessed as configuration object
4141
attributes or items. So this exception instances also are
42-
instances of KeyError (invalid item access) and AttrributeError
42+
instances of KeyError (invalid item access) and AttributeError
4343
(invalid attribute access).
4444
4545
Constructor parameter: option name
@@ -192,7 +192,7 @@ def isdefault(self):
192192
return self._value == self._default_value
193193

194194
def isset(self):
195-
"""Return True if the value is avaliable (either set or default)"""
195+
"""Return True if the value is available (either set or default)"""
196196
return self._value != NODEFAULT
197197

198198
def __str__(self):

0 commit comments

Comments
 (0)