From e3633a2cc4a5aa061172f4962da86ce346151ff8 Mon Sep 17 00:00:00 2001 From: mike Date: Thu, 16 Apr 2009 20:52:21 +0000 Subject: LP 348570 Core : Integrating properties to actions; adding tests --- (limited to 'src/sugar/tutorius/properties.py') 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) -- cgit v0.9.1