Explorar o código

Docs: Removed deltas from guides.

Szymon Cofalik %!s(int64=7) %!d(string=hai) anos
pai
achega
94a7ab6273
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      docs/framework/guides/architecture/editing-engine.md

+ 1 - 1
docs/framework/guides/architecture/editing-engine.md

@@ -68,7 +68,7 @@ editor.model.change( writer => {
 ```
 ```
 
 
 <info-box>
 <info-box>
-	All changes made to the document structure are done by applying {@link module:engine/model/operation/operation~Operation operations}. The concept of operations comes from [Operational Transformation](https://en.wikipedia.org/wiki/Operational_transformation) (in short: OT), a technology enabling collaboration functionality. Since OT requires that a system is able to transform every operation by every other one (to figure out the result of concurrently applied operations), the set of operations needs to be small. CKEditor 5 features a non-linear model (normally, OT implementations use flat, array-like models while CKEditor 5 uses a tree structure), hence the set of potential semantic changes is more complex. To handle that, the editing engine implements a small set of operations and a bigger set of {@link module:engine/model/delta/delta~Delta "deltas"} &mdash; groups of operations with additional semantics attached. Finally, deltas are grouped in {@link module:engine/model/batch~Batch batches}. A batch can be understood as a single undo step.
+	All changes made to the document structure are done by applying {@link module:engine/model/operation/operation~Operation operations}. The concept of operations comes from [Operational Transformation](https://en.wikipedia.org/wiki/Operational_transformation) (in short: OT), a technology enabling collaboration functionality. Since OT requires that a system is able to transform every operation by every other one (to figure out the result of concurrently applied operations), the set of operations needs to be small. CKEditor 5 features a non-linear model (normally, OT implementations use flat, array-like models while CKEditor 5 uses a tree structure), hence the set of potential semantic changes is more complex. To handle that, the editing engine implements a set of {@link module:engine/model/operation/operation~Operation operations}. Operations are grouped in {@link module:engine/model/batch~Batch batches}. A batch can be understood as a single undo step.
 </info-box>
 </info-box>
 
 
 ### Text attributes
 ### Text attributes