From a47575df63187ecaa56fbe34849b12f27011a047 Mon Sep 17 00:00:00 2001 From: Thomas Kluyver Date: Sat, 6 Sep 2014 11:35:14 -0700 Subject: [PATCH] Fix some doc build warnings --- IPython/utils/eventful.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/IPython/utils/eventful.py b/IPython/utils/eventful.py index d02be7b1b..0198f1122 100644 --- a/IPython/utils/eventful.py +++ b/IPython/utils/eventful.py @@ -12,7 +12,7 @@ class EventfulDict(dict): other words, if you add a dict as a child, the events of that dict won't be listened to. If you find you need something recursive, listen to the `add` and `set` methods, and then cancel `dict` values from being set, and instead - set `EventfulDict`s that wrap those `dict`s. Then you can wire the events + set EventfulDicts that wrap those dicts. Then you can wire the events to the same handlers if necessary. See the on_events, on_add, on_set, and on_del methods for registering