From 04ad6474a58e398d9ed74fee4e0c4f020bfc5106 Mon Sep 17 00:00:00 2001 From: Jakob Fix <170240+jfix@users.noreply.github.com> Date: Fri, 21 Sep 2018 20:03:52 +0200 Subject: [PATCH] Fix a typo (#2327) --- docs/docs/modules/keyboard.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/modules/keyboard.md b/docs/docs/modules/keyboard.md index ec1894014a..37d3792bab 100644 --- a/docs/docs/modules/keyboard.md +++ b/docs/docs/modules/keyboard.md @@ -209,6 +209,6 @@ var quill = new Quill('#editor', { ``` -### Peformance +### Performance Like DOM events, Quill key bindings are blocking calls on every match, so it is a bad idea to have a very expensive handler for a very common key binding. Apply the same performance best practices as you would when attaching to common blocking DOM events, like `scroll` or `mousemove`.