Browse Source

Fixed typo in docs.

Oskar Wróbel 8 years ago
parent
commit
86dc58c771
1 changed files with 3 additions and 3 deletions
  1. 3 3
      packages/ckeditor5-ui/src/toolbar/contextualtoolbar.js

+ 3 - 3
packages/ckeditor5-ui/src/toolbar/contextualtoolbar.js

@@ -102,10 +102,10 @@ export default class ContextualToolbar extends Plugin {
 	}
 
 	/**
-	 * Handles {@link modules:engine/model/document#selection} change and show or hide toolbar.
+	 * Handles {@link module:engine/model/document#selection} change and show or hide toolbar.
 	 *
-	 * Note that in this case it's better to listen to {@link modules:engine/model/document modelDocument}
-	 * selection instead of {@link modules:engine/view/document viewDocument} selection because the first one
+	 * Note that in this case it's better to listen to {@link module:engine/model/document modelDocument}
+	 * selection instead of {@link module:engine/view/document viewDocument} selection because the first one
 	 * doesn't fire `change` event after text style change (like bold or italic) and toolbar doesn't blink.
 	 *
 	 * @private