Adding comments to Linux CCN examples
[nepi.git] / src / nepi / execution / trace.py
index 1d16242..19065db 100644 (file)
@@ -18,9 +18,8 @@
 # Author: Alina Quereilhac <alina.quereilhac@inria.fr>
 
 class TraceAttr:
-    """ Class representing the different attributes 
-    that can characterized a trace.
-
+    """ Trace attributes represent different information
+    aspects that can be retrieved from a trace.
     """
     ALL = 'all'
     STREAM = 'stream'
@@ -45,11 +44,11 @@ class Trace(object):
 
     @property
     def name(self):
-    """ Returns the name of the trace """
+        """ Returns the name of the trace """
         return self._name
 
     @property
     def help(self):
-    """ Returns the help of the trace """
+        """ Returns the help of the trace """
         return self._help