From dde9fba410f4e6608fdb66729253910657047251 Mon Sep 17 00:00:00 2001 From: Jason Chen Date: Tue, 2 May 2017 10:44:38 -0700 Subject: [PATCH] fix list item reference --- docs/guides/how-to-customize-quill.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guides/how-to-customize-quill.md b/docs/guides/how-to-customize-quill.md index f5d553f84e..06d712adfd 100644 --- a/docs/guides/how-to-customize-quill.md +++ b/docs/guides/how-to-customize-quill.md @@ -124,7 +124,7 @@ var quill = new Quill('#editor', { You can also extend existing formats. Here is a quick ES6 implementation of a list item that does not permit formatting its contents. Code blocks are implemented in exactly this way. ```js -var ListItem = Quill.import('blots/list/item'); +var ListItem = Quill.import('formats/list/item'); class PlainListItem extends ListItem { formatAt(index, length, name, value) {