Explorar el Código

Typo in docs.

Szymon Cofalik hace 6 años
padre
commit
81878c4eff
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      packages/ckeditor5-typing/src/input.js

+ 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...' );
 	 *			}
 	 *		} );