Selaa lähdekoodia

Merge pull request #1655 from ckeditor/t/docs-markercollection

Docs: Removed duplicated content in `Marker` docs
Piotrek Koszuliński 6 vuotta sitten
vanhempi
commit
05c38df70e
1 muutettua tiedostoa jossa 0 lisäystä ja 4 poistoa
  1. 0 4
      packages/ckeditor5-engine/src/model/markercollection.js

+ 0 - 4
packages/ckeditor5-engine/src/model/markercollection.js

@@ -305,10 +305,6 @@ mix( MarkerCollection, EmitterMixin );
  * Then, it can be upcasted back to a marker. Again, use {@link module:engine/conversion/upcasthelpers upcast converters} or
  * attach a custom converter to {@link module:engine/conversion/upcastdispatcher~UpcastDispatcher#event:element}.
  *
- * Another upside of markers is that finding marked part of document is fast and easy. Using attributes to mark some nodes
- * and then trying to find that part of document would require traversing whole document tree. Marker gives instant access
- * to the range which it is marking at the moment.
- *
  * `Marker` instances are created and destroyed only by {@link ~MarkerCollection MarkerCollection}.
  */
 class Marker {