From 3ca977e26a0858f6079b95349e22fd7afdad5e0c Mon Sep 17 00:00:00 2001 From: Rocky Meza Date: Mon, 24 Apr 2017 21:23:53 -0400 Subject: [PATCH] Fix typo in plugin.md (#753) --- docs/reference/plugins/plugin.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/reference/plugins/plugin.md b/docs/reference/plugins/plugin.md index d5311c8f5..9526f67e4 100644 --- a/docs/reference/plugins/plugin.md +++ b/docs/reference/plugins/plugin.md @@ -224,7 +224,7 @@ This allows you to stack up changes across the entire plugin stack. The `onBeforeChange` handler isn't a native browser event handler. Instead, it is invoked whenever the editor receives a new state and before propagating a new state to `onChange`. Returning a new state will update the editor's state before rendering, continuing down the plugin stack. -Like `onChange`, `onBeforeChange` is cummulative. +Like `onChange`, `onBeforeChange` is cumulative. ### `render` `Function render(props: Object, state: State, editor: Editor) => Object || Void`