@fluidframework/merge-tree 2.70.0-360753 → 2.70.0-361248

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -100,7 +100,7 @@ export interface IMergeTreeSegmentDelta {
100
100
  /**
101
101
  * A property set containing changes to properties on this segment.
102
102
  *
103
- * @remarks - Deleting a property is represented using `null` as the value.
103
+ * @remarks Deleting a property is represented using `null` as the value.
104
104
  * @example
105
105
  *
106
106
  * An annotation change which deleted the property "foo" and set "bar" to 5 would be represented as:
@@ -123,7 +123,7 @@ export interface IMergeTreeDeltaOpArgs {
123
123
  /**
124
124
  * The {@link IMergeTreeOp} corresponding to the delta.
125
125
  *
126
- * @remarks - This is useful for determining the type of change (see {@link (MergeTreeDeltaType:type)}).
126
+ * @remarks This is useful for determining the type of change (see {@link (MergeTreeDeltaType:type)}).
127
127
  */
128
128
  readonly op: IMergeTreeOp;
129
129
 
@@ -151,7 +151,7 @@ export type MergeTreeDeltaCallback = (
151
151
  /**
152
152
  * @legacy @beta
153
153
  */
154
- // eslint-disable-next-line @typescript-eslint/no-empty-interface
154
+ // eslint-disable-next-line @typescript-eslint/no-empty-object-type, @typescript-eslint/no-empty-interface
155
155
  export interface IMergeTreeMaintenanceCallbackArgs
156
156
  extends IMergeTreeDeltaCallbackArgs<MergeTreeMaintenanceType> {}
157
157
 
@@ -613,7 +613,7 @@ export class CollaborationWindow {
613
613
  * Semantically, `localSeq`s provide an ordering on in-flight merge-tree operations:
614
614
  * for operations stamped with localSeqs `a` and `b`, `a < b` if and only if `a` was submitted before `b`.
615
615
  *
616
- * @remarks - This field is analogous to the `clientSequenceNumber` field on ops, but it's accessible to merge-tree
616
+ * @remarks This field is analogous to the `clientSequenceNumber` field on ops, but it's accessible to merge-tree
617
617
  * at op submission time rather than only at ack time. This enables more natural state tracking for in-flight ops.
618
618
  *
619
619
  * It's useful to stamp ops with such an incrementing counter because it enables reasoning about which segments existed from
package/src/stamps.ts CHANGED
@@ -21,7 +21,7 @@ import {
21
21
  * from alternative perspectives: a remote client will have seen all of its own previous operations as well as
22
22
  * those at or below the op's reference sequence number.
23
23
  *
24
- * @remarks - As the `readonly` identifies suggest, these stamps should be treated as immutable.
24
+ * @remarks As the `readonly` identifies suggest, these stamps should be treated as immutable.
25
25
  * New operations applied to a merge-tree should create new stamps rather than modify existing ones (e.g. when
26
26
  * a change's ack happens).
27
27
  * @internal