diff --git a/examples/user_guide/Custom_Components.ipynb b/examples/user_guide/Custom_Components.ipynb index ce6e82d48a..a2360a4c32 100644 --- a/examples/user_guide/Custom_Components.ipynb +++ b/examples/user_guide/Custom_Components.ipynb @@ -178,7 +178,7 @@ " _dom_events = {'input': ['change']}\n", "```\n", "\n", - "Once subscribed the class may also define a method following the `_{node-id}_{event}` naming convention which will fire when the DOM event triggers, e.g. we could define a `__custom_id_change` method. Any such callback will be given a `DOMEvent` object as the first and only argument.\n", + "Once subscribed the class may also define a method following the `_{node-id}_{event}` naming convention which will fire when the DOM event triggers, e.g. we could define a `_custom_id_change` method. Any such callback will be given a `DOMEvent` object as the first and only argument.\n", "\n", "The `DOMEvent` contains information about the event on the `.data` attribute, like declaring the type of event on `.data.type`." ]