Remove hardcoded properties list from DeferredOperand; use a c'tor
[pyutils.git] / src / pyutils / stopwatch.py
index 81d9dce09bd9711716fc85f87f391899447ecd1c..ae4c4f327ea3cbd04ef53cb7a51001eba7cc8501 100644 (file)
@@ -14,7 +14,7 @@ class Timer(contextlib.AbstractContextManager):
     """
     A stopwatch to time how long something takes (walltime).
 
-    e.g.
+    Example usage::
 
         with stopwatch.Timer() as t:
             do_the_thing()