Browse Source

Docs: slight fix

Szymon Cofalik 6 years ago
parent
commit
587755b7fa
1 changed files with 1 additions and 1 deletions
  1. 1 1
      packages/ckeditor5-engine/src/model/model.js

+ 1 - 1
packages/ckeditor5-engine/src/model/model.js

@@ -104,7 +104,7 @@ export default class Model {
 		this.schema.extend( '$text', { allowIn: '$clipboardHolder' } );
 
 		// An element needed by the `upcastElementToMarker` converter.
-		// This element temporarily represents marker bound during the conversion process and is removed
+		// This element temporarily represents a marker boundary during the conversion process and is removed
 		// at the end of the conversion. `UpcastDispatcher` or at least `Conversion` class looks like a
 		// better place for this registration but both know nothing about `Schema`.
 		this.schema.register( '$marker' );