Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/dds/cell/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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/).

<!-- AUTO-GENERATED-CONTENT:START (LIBRARY_README_HEADER:) -->

Expand Down
2 changes: 1 addition & 1 deletion packages/dds/legacy-dds/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 1 addition & 1 deletion packages/dds/legacy-dds/src/signal/sharedSignal.ts
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ export class SharedSignalClass<T extends SerializableTypeForSharedSignal = any>
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;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions packages/dds/shared-object-base/src/sharedObjectKernel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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<T extends object> {
Expand All @@ -244,7 +244,7 @@ export interface FactoryOut<T extends object> {
}

/**
* 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}.
Expand Down
Loading