diff --git a/packages/dds/cell/README.md b/packages/dds/cell/README.md index 8c8bcd5e1ce3..ef37092db0a9 100644 --- a/packages/dds/cell/README.md +++ b/packages/dds/cell/README.md @@ -3,7 +3,7 @@ The `SharedCell` Distributed Data Structure (DDS) stores a single, shared value that can be edited or deleted. This package is primarily intended as a minimal example of how distributed data structures work. -For real-world scenarios, we recommend using one of our other DDSs, like [SharedTree](https://fluidframework.com./docs/data-structures/tree/). +For real-world scenarios, we recommend using one of our other DDSes, like [SharedTree](https://fluidframework.com/docs/data-structures/tree/). diff --git a/packages/dds/legacy-dds/package.json b/packages/dds/legacy-dds/package.json index 4cb048f11f64..1c9cb1646538 100644 --- a/packages/dds/legacy-dds/package.json +++ b/packages/dds/legacy-dds/package.json @@ -1,7 +1,7 @@ { "name": "@fluidframework/legacy-dds", "version": "2.91.0", - "description": "Legacy DDSs for the Fluid Framework. These are not intended for use in new code.", + "description": "Legacy DDSes for the Fluid Framework. These are not intended for use in new code.", "homepage": "https://fluidframework.com", "repository": { "type": "git", diff --git a/packages/dds/legacy-dds/src/signal/sharedSignal.ts b/packages/dds/legacy-dds/src/signal/sharedSignal.ts index 556c7b37fcc5..15050cef1330 100644 --- a/packages/dds/legacy-dds/src/signal/sharedSignal.ts +++ b/packages/dds/legacy-dds/src/signal/sharedSignal.ts @@ -163,7 +163,7 @@ export class SharedSignalClass this.emit("notify", op.metadata, isLocal); } - // Nothing to roll back. Allowing other DDSs to handle rollback if necessary. + // Nothing to roll back. Allowing other DDSes to handle rollback if necessary. public rollback(content: unknown, _localOpMetadata: unknown): void { return; } diff --git a/packages/dds/sequence/src/intervalCollectionMapInterfaces.ts b/packages/dds/sequence/src/intervalCollectionMapInterfaces.ts index 39099b5d36ea..d7d730347395 100644 --- a/packages/dds/sequence/src/intervalCollectionMapInterfaces.ts +++ b/packages/dds/sequence/src/intervalCollectionMapInterfaces.ts @@ -42,7 +42,7 @@ export type IntervalMessageLocalMetadata = | IntervalChangeLocalMetadata | IntervalDeleteLocalMetadata; /** - * Optional flags that configure options for sequence DDSs + * Optional flags that configure options for sequence DDSes * @internal */ export interface SequenceOptions diff --git a/packages/dds/shared-object-base/src/sharedObjectKernel.ts b/packages/dds/shared-object-base/src/sharedObjectKernel.ts index 76e411a1af00..7632b99c00f9 100644 --- a/packages/dds/shared-object-base/src/sharedObjectKernel.ts +++ b/packages/dds/shared-object-base/src/sharedObjectKernel.ts @@ -235,7 +235,7 @@ export const thisWrap: unique symbol = Symbol("selfWrap"); * for reading and writing data which are specific to this particular data structure. * @remarks * Output from {@link SharedKernelFactory}. - * This is an alternative to defining DDSs by sub-classing {@link SharedObject}. + * This is an alternative to defining DDSes by sub-classing {@link SharedObject}. * @internal */ export interface FactoryOut { @@ -244,7 +244,7 @@ export interface FactoryOut { } /** - * A factory for creating DDSs. + * A factory for creating DDSes. * @remarks * Outputs {@link FactoryOut}. * This is an alternative to directly implementing {@link @fluidframework/datastore-definitions#IChannelFactory}.