Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/src/sugar/tutorius/properties.py
diff options
context:
space:
mode:
authormike <michael.jmontcalm@gmail.com>2009-04-16 20:52:21 (GMT)
committer mike <michael.jmontcalm@gmail.com>2009-04-16 20:52:21 (GMT)
commite3633a2cc4a5aa061172f4962da86ce346151ff8 (patch)
treee12948a10b6dbb302d4e2fbfd92d8fa92ea2437a /src/sugar/tutorius/properties.py
parent0cad6dc96afc2ebd4d03beb14ed01bc155dfa322 (diff)
LP 348570 Core : Integrating properties to actions; adding tests
Diffstat (limited to 'src/sugar/tutorius/properties.py')
-rw-r--r--src/sugar/tutorius/properties.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sugar/tutorius/properties.py b/src/sugar/tutorius/properties.py
index cd12f90..a0bfa03 100644
--- a/src/sugar/tutorius/properties.py
+++ b/src/sugar/tutorius/properties.py
@@ -87,7 +87,7 @@ class TIntProperty(TutoriusProperty):
class TFloatProperty(TutoriusProperty):
"""
- Represents a floting point number. Can have an upper value limit and/or
+ Represents a floating point number. Can have an upper value limit and/or
a lower value limit.
"""
def __init__(self, value, lower_limit=None, upper_limit=None):
@@ -185,7 +185,7 @@ class TEnumProperty(TutoriusProperty):
class TBooleanProperty(TutoriusProperty):
"""
- Represents a True of False value.
+ Represents a True or False value.
"""
def __init__(self, value=False):
TutoriusProperty.__init__(self)