File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -39,8 +39,10 @@ export class ModelApi<N extends JsonNode = JsonNode> implements SyncStore<JsonNo
3939 public readonly onBeforeLocalChange = new FanOut < number > ( ) ;
4040 /** Emitted after local changes through `model.api` are applied. */
4141 public readonly onLocalChange = new FanOut < number > ( ) ;
42- /** Emitted after local changes through `model.api` are applied. Same as
43- * `.onLocalChange`, but this event buffered withing a microtask. */
42+ /**
43+ * Emitted after local changes through `model.api` are applied. Same as
44+ * `.onLocalChange`, but this event buffered withing a microtask.
45+ */
4446 public readonly onLocalChanges = new MicrotaskBufferFanOut < number > ( this . onLocalChange ) ;
4547 /** Emitted before a transaction is started. */
4648 public readonly onBeforeTransaction = new FanOut < void > ( ) ;
You can’t perform that action at this time.
0 commit comments