From fe7fade5eae73477e3e7d3f56cca319219e3eb5f 2012-03-03 23:31:19 From: Jason Grout Date: 2012-03-03 23:31:19 Subject: [PATCH] Fix typo in comment (insert space) --- diff --git a/IPython/testing/decorators.py b/IPython/testing/decorators.py index 7f8621c..d03b068 100644 --- a/IPython/testing/decorators.py +++ b/IPython/testing/decorators.py @@ -245,7 +245,7 @@ def skipif(skip_condition, msg=None): return skip_decorator -# A version with the condition set to true, common case just to attacha message +# A version with the condition set to true, common case just to attach a message # to a skip decorator def skip(msg=None): """Decorator factory - mark a test function for skipping from test suite.