Przeglądaj źródła

Docs: Fixed typo. [skip ci]

Anna Tomanek 8 lat temu
rodzic
commit
79578e6068
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      docs/framework/guides/architecture/intro.md

+ 1 - 1
docs/framework/guides/architecture/intro.md

@@ -138,7 +138,7 @@ These events make it possible to control the command from the outside. For insta
 const command = editor.commands.get( 'someCommand' );
 
 command.on( 'change:isEnabled', forceDisable, { priority: 'lowest' } );
-command.isEanabled = false;
+command.isEnabled = false;
 
 function forceDisabled() {
 	this.isEnabled = false;