From 14968c8a96b90ccdd3bc694f3f68328517807b1a 2009-08-25 21:46:13 From: Brian Granger Date: 2009-08-25 21:46:13 Subject: [PATCH] Fixing minor typo. --- diff --git a/IPython/core/component.py b/IPython/core/component.py index 9cf898a..f7a4d4c 100644 --- a/IPython/core/component.py +++ b/IPython/core/component.py @@ -211,13 +211,13 @@ class Component(HasTraitlets): return self._children def _remove_child(self, child): - """A private method for removing children componenets.""" + """A private method for removing children components.""" if child in self._children: index = self._children.index(child) del self._children[index] def _add_child(self, child): - """A private method for adding children componenets.""" + """A private method for adding children components.""" if child not in self._children: self._children.append(child)