From 3c266c45cf8f7933cef9f7a5ccaab8f36f2e9a95 2016-04-08 19:05:13
From: Thomas Kluyver <takowl@gmail.com>
Date: 2016-04-08 19:05:13
Subject: [PATCH] Merge pull request #9386 from zymbolic/timeit_spelling

Minor spelling changes to the docstring of TimeitResult
---

diff --git a/IPython/core/magics/execution.py b/IPython/core/magics/execution.py
index 4dd208b..4edadc9 100644
--- a/IPython/core/magics/execution.py
+++ b/IPython/core/magics/execution.py
@@ -61,12 +61,12 @@ class TimeitResult(object):
     """
     Object returned by the timeit magic with info about the run.
 
-    Contain the following attributes :
+    Contains the following attributes :
 
-    loops: (int) number of loop done per measurement
-    repeat: (int) number of time the mesurement has been repeated
-    best: (float) best execusion time / number
-    all_runs: (list of float) execusion time of each run (in s)
+    loops: (int) number of loops done per measurement
+    repeat: (int) number of times the measurement has been repeated
+    best: (float) best execution time / number
+    all_runs: (list of float) execution time of each run (in s)
     compile_time: (float) time of statement compilation (s)
 
     """