diff --git a/circle/vm/models/instance.py b/circle/vm/models/instance.py
index 6f40728..22fa26e 100644
--- a/circle/vm/models/instance.py
+++ b/circle/vm/models/instance.py
@@ -135,14 +135,14 @@ class InstanceTemplate(AclBase, VirtualMachineDescModel, TimeStampedModel):
 
     @property
     def running_instances(self):
-        """Returns the number of running instances of the template.
+        """The number of running instances of the template.
         """
         return len([i for i in self.instance_set.all()
                     if i.state == 'RUNNING'])
 
     @property
     def os_type(self):
-        """Get the type of the template's operating system.
+        """The type of the template's operating system.
         """
         if self.access_method == 'rdp':
             return 'windows'