From 6ec181df44688a271ef610d9f38169a8cfc56e96 Mon Sep 17 00:00:00 2001 From: Bernhard Kau Date: Fri, 24 Aug 2018 20:18:11 +0200 Subject: [PATCH] typo in doc JS file name (#9315) --- docs/extensibility/extending-blocks.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/extensibility/extending-blocks.md b/docs/extensibility/extending-blocks.md index f35e637974e138..d2fab2fccea010 100644 --- a/docs/extensibility/extending-blocks.md +++ b/docs/extensibility/extending-blocks.md @@ -186,7 +186,7 @@ wp.hooks.addFilter( 'editor.BlockListBlock', 'my-plugin/with-data-align', withDa Adding blocks is easy enough, removing them is as easy. Plugin or theme authors have the possibility to "unregister" blocks. ```js -// myp-lugin.js +// my-plugin.js wp.blocks.unregisterBlockType( 'core/verse' ); ```