Skip to content

Commit 653dd80

Browse files
committed
style(json-crdt): 💄 fix JSDoc formatting
1 parent 61b7bf6 commit 653dd80

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/json-crdt/model/api/ModelApi.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff 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>();

0 commit comments

Comments
 (0)