8
0
Szymon Cofalik 6 жил өмнө
parent
commit
81878c4eff

+ 1 - 1
packages/ckeditor5-typing/src/input.js

@@ -47,7 +47,7 @@ export default class Input extends Plugin {
 	 *		const input = editor.plugins.get( 'Input' );
 	 *
 	 *		editor.model.document.on( 'change:data', ( evt, batch ) => {
-	 *			if ( input.isTyping( batch) ) {
+	 *			if ( input.isTyping( batch ) ) {
 	 *				console.log( 'The user typed something...' );
 	 *			}
 	 *		} );