Przeglądaj źródła

Update src/multicommand.js

Co-Authored-By: Piotrek Koszuliński <pkoszulinski@gmail.com>
Maciej 6 lat temu
rodzic
commit
0765398ce4
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      packages/ckeditor5-core/src/multicommand.js

+ 1 - 1
packages/ckeditor5-core/src/multicommand.js

@@ -25,7 +25,7 @@ import Collection from '@ckeditor/ckeditor5-utils/src/collection';
  *		multiCommand.registerChildCommand( commandFoo );
  *		multiCommand.registerChildCommand( commandBar );
  *
- *		// Enable one of commands
+ *		// Enable one of the commands.
  *		commandBar.isEnabled = true;
  *
  *		multiCommand.execute(); // Will execute commandBar.