8
0
Pārlūkot izejas kodu

Docs: Minor API docs fixes.

Piotrek Koszuliński 8 gadi atpakaļ
vecāks
revīzija
3affce114b

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

@@ -402,7 +402,7 @@ export default class Range {
 	 * moved to a different part of document tree). For this reason, an array is returned by this method and it
 	 * may contain one or more `Range` instances.
 	 *
-	 * @param {Iterable.<module:engine/model/delta~Delta>} deltas Deltas to transform the range by.
+	 * @param {Iterable.<module:engine/model/delta/delta~Delta>} deltas Deltas to transform the range by.
 	 * @returns {Array.<module:engine/model/range~Range>} Range which is the result of transformation.
 	 */
 	getTransformedByDeltas( deltas ) {

+ 1 - 1
packages/ckeditor5-engine/tests/model/_utils/utils.js

@@ -48,7 +48,7 @@ export function jsonParseStringify( object ) {
 
 /**
  * Adds given {@link module:engine/model/operation/operation~Operation operation} to a newly created
- * {@link module:engine/model/delta~Delta.Delta delta}
+ * {@link module:engine/model/delta/delta~Delta delta}
  * and returns it back. Every operation, when applied, have to be added to a delta. This helper function is useful in those
  * tests which focus on operations, not deltas.
  *