Skip to content

Commit cbc9f19

Browse files
Apply suggestions from code review
Co-authored-by: Noah Encke <[email protected]>
1 parent 92b8aa0 commit cbc9f19

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

experimental/dds/tree2/src/feature-libraries/typed-schema/typedTreeSchema.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,13 +55,13 @@ export type NormalizeStructFields<T extends Fields | undefined> = NormalizeStruc
5555
*
5656
* These extends constraints only serve as documentation:
5757
* to avoid breaking compilation, this type has to not actually enforce anything, and thus is just `unknown`.
58-
* Therefor the type safety is the responsibility of the user of the API.
58+
* Therefore the type safety is the responsibility of the user of the API.
5959
* @alpha
6060
*/
6161
export type Unenforced<_DesiredExtendsConstraint> = unknown;
6262

6363
{
64-
type _check2 = requireAssignableTo<TreeSchema, Unenforced<TreeSchema>>;
64+
type _check = requireAssignableTo<TreeSchema, Unenforced<TreeSchema>>;
6565
}
6666

6767
/**
@@ -310,7 +310,7 @@ export class FieldSchema<
310310

311311
/**
312312
* Constructs a FieldSchema.
313-
* @remarks
313+
* @privateRemarks
314314
* Alias for the constructor, but with extends clause for the `Types` parameter that {@link FieldSchema} can not have (due to recursive type issues).
315315
*/
316316
public static create<Kind extends FieldKind, const Types extends AllowedTypes>(

0 commit comments

Comments
 (0)