Skip to content

Commit a74610a

Browse files
committed
Fix another typo
1 parent 0d39b94 commit a74610a

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

packages/dds/tree/src/simple-tree/api/typesUnsafe.ts

+15-15
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ export type Unenforced<_DesiredExtendsConstraint> = unknown;
5151
/**
5252
* {@link Unenforced} version of `ObjectFromSchemaRecord`.
5353
* @remarks
54-
* Do not use this type directly: its only needed in the implementation of generic logic which define recursive schema, not when using recursive schema.
54+
* Do not use this type directly: it's only needed in the implementation of generic logic which define recursive schema, not when using recursive schema.
5555
* @system @public
5656
*/
5757
export type ObjectFromSchemaRecordUnsafe<
@@ -121,7 +121,7 @@ export interface TreeNodeSchemaNonClassUnsafe<
121121
/**
122122
* {@link Unenforced} version of {@link TreeObjectNode}.
123123
* @remarks
124-
* Do not use this type directly: its only needed in the implementation of generic logic which define recursive schema, not when using recursive schema.
124+
* Do not use this type directly: it's only needed in the implementation of generic logic which define recursive schema, not when using recursive schema.
125125
* @system @public
126126
*/
127127
export type TreeObjectNodeUnsafe<
@@ -132,7 +132,7 @@ export type TreeObjectNodeUnsafe<
132132
/**
133133
* {@link Unenforced} version of {@link TreeFieldFromImplicitField}.
134134
* @remarks
135-
* Do not use this type directly: its only needed in the implementation of generic logic which define recursive schema, not when using recursive schema.
135+
* Do not use this type directly: it's only needed in the implementation of generic logic which define recursive schema, not when using recursive schema.
136136
* @system @public
137137
*/
138138
export type TreeFieldFromImplicitFieldUnsafe<TSchema extends Unenforced<ImplicitFieldSchema>> =
@@ -153,7 +153,7 @@ export type AllowedTypesUnsafe = readonly LazyItem<TreeNodeSchemaUnsafe>[];
153153
/**
154154
* {@link Unenforced} version of {@link TreeNodeFromImplicitAllowedTypes}.
155155
* @remarks
156-
* Do not use this type directly: its only needed in the implementation of generic logic which define recursive schema, not when using recursive schema.
156+
* Do not use this type directly: it's only needed in the implementation of generic logic which define recursive schema, not when using recursive schema.
157157
* @system @public
158158
*/
159159
export type TreeNodeFromImplicitAllowedTypesUnsafe<
@@ -168,7 +168,7 @@ export type TreeNodeFromImplicitAllowedTypesUnsafe<
168168
* {@link Unenforced} version of {@link InsertableTreeNodeFromImplicitAllowedTypes}.
169169
* @see {@link Input}
170170
* @remarks
171-
* Do not use this type directly: its only needed in the implementation of generic logic which define recursive schema, not when using recursive schema.
171+
* Do not use this type directly: it's only needed in the implementation of generic logic which define recursive schema, not when using recursive schema.
172172
* @system @public
173173
*/
174174
export type InsertableTreeNodeFromImplicitAllowedTypesUnsafe<
@@ -197,7 +197,7 @@ export type InsertableTreeNodeFromAllowedTypesUnsafe<
197197
* {@link Unenforced} version of {@link InsertableTypedNode}.
198198
* @see {@link Input}
199199
* @remarks
200-
* Do not use this type directly: its only needed in the implementation of generic logic which define recursive schema, not when using recursive schema.
200+
* Do not use this type directly: it's only needed in the implementation of generic logic which define recursive schema, not when using recursive schema.
201201
* @privateRemarks
202202
* TODO:
203203
* This is less strict than InsertableTypedNode when given non-exact schema to avoid compilation issues.
@@ -216,7 +216,7 @@ export type InsertableTypedNodeUnsafe<
216216
/**
217217
* {@link Unenforced} version of {@link NodeFromSchema}.
218218
* @remarks
219-
* Do not use this type directly: its only needed in the implementation of generic logic which define recursive schema, not when using recursive schema.
219+
* Do not use this type directly: it's only needed in the implementation of generic logic which define recursive schema, not when using recursive schema.
220220
* @system @public
221221
*/
222222
export type NodeFromSchemaUnsafe<T extends Unenforced<TreeNodeSchema>> =
@@ -225,7 +225,7 @@ export type NodeFromSchemaUnsafe<T extends Unenforced<TreeNodeSchema>> =
225225
/**
226226
* {@link Unenforced} version of {@link InsertableTreeNodeFromImplicitAllowedTypes}.
227227
* @remarks
228-
* Do not use this type directly: its only needed in the implementation of generic logic which define recursive schema, not when using recursive schema.
228+
* Do not use this type directly: it's only needed in the implementation of generic logic which define recursive schema, not when using recursive schema.
229229
* @system @public
230230
*/
231231
export type NodeBuilderDataUnsafe<T extends Unenforced<TreeNodeSchema>> =
@@ -234,7 +234,7 @@ export type NodeBuilderDataUnsafe<T extends Unenforced<TreeNodeSchema>> =
234234
/**
235235
* {@link Unenforced} version of {@link (TreeArrayNode:interface)}.
236236
* @remarks
237-
* Do not use this type directly: its only needed in the implementation of generic logic which define recursive schema, not when using recursive schema.
237+
* Do not use this type directly: it's only needed in the implementation of generic logic which define recursive schema, not when using recursive schema.
238238
* @system @sealed @public
239239
*/
240240
export interface TreeArrayNodeUnsafe<TAllowedTypes extends Unenforced<ImplicitAllowedTypes>>
@@ -247,7 +247,7 @@ export interface TreeArrayNodeUnsafe<TAllowedTypes extends Unenforced<ImplicitAl
247247
/**
248248
* {@link Unenforced} version of {@link TreeMapNode}.
249249
* @remarks
250-
* Do not use this type directly: its only needed in the implementation of generic logic which define recursive schema, not when using recursive schema.
250+
* Do not use this type directly: it's only needed in the implementation of generic logic which define recursive schema, not when using recursive schema.
251251
* @system @sealed @public
252252
*/
253253
export interface TreeMapNodeUnsafe<T extends Unenforced<ImplicitAllowedTypes>>
@@ -271,7 +271,7 @@ export interface TreeMapNodeUnsafe<T extends Unenforced<ImplicitAllowedTypes>>
271271
* Copy of TypeScript's ReadonlyMap, but with `TreeNodeFromImplicitAllowedTypesUnsafe<T>` inlined into it.
272272
* Using this instead of ReadonlyMap in TreeMapNodeUnsafe is necessary to make recursive map schema not generate compile errors in the d.ts files when exported.
273273
* @remarks
274-
* Do not use this type directly: its only needed in the implementation of generic logic which define recursive schema, not when using recursive schema.
274+
* Do not use this type directly: it's only needed in the implementation of generic logic which define recursive schema, not when using recursive schema.
275275
* @privateRemarks
276276
* This is the same as `ReadonlyMap<K, TreeNodeFromImplicitAllowedTypesUnsafe<T>>` (Checked in test),
277277
* except that it avoids the above mentioned compile error.
@@ -313,7 +313,7 @@ export interface ReadonlyMapInlined<K, T extends Unenforced<ImplicitAllowedTypes
313313
/**
314314
* {@link Unenforced} version of `FieldHasDefault`.
315315
* @remarks
316-
* Do not use this type directly: its only needed in the implementation of generic logic which define recursive schema, not when using recursive schema.
316+
* Do not use this type directly: it's only needed in the implementation of generic logic which define recursive schema, not when using recursive schema.
317317
* @system @sealed @public
318318
*/
319319
export type FieldHasDefaultUnsafe<T extends Unenforced<ImplicitFieldSchema>> =
@@ -328,7 +328,7 @@ export type FieldHasDefaultUnsafe<T extends Unenforced<ImplicitFieldSchema>> =
328328
* {@link Unenforced} version of `InsertableObjectFromSchemaRecord`.
329329
* @see {@link Input}
330330
* @remarks
331-
* Do not use this type directly: its only needed in the implementation of generic logic which define recursive schema, not when using recursive schema.
331+
* Do not use this type directly: it's only needed in the implementation of generic logic which define recursive schema, not when using recursive schema.
332332
* @system @public
333333
*/
334334
export type InsertableObjectFromSchemaRecordUnsafe<
@@ -350,7 +350,7 @@ export type InsertableObjectFromSchemaRecordUnsafe<
350350
* {@link Unenforced} version of {@link InsertableTreeFieldFromImplicitField}.
351351
* @see {@link Input}
352352
* @remarks
353-
* Do not use this type directly: its only needed in the implementation of generic logic which define recursive schema, not when using recursive schema.
353+
* Do not use this type directly: it's only needed in the implementation of generic logic which define recursive schema, not when using recursive schema.
354354
* @system @public
355355
*/
356356
export type InsertableTreeFieldFromImplicitFieldUnsafe<
@@ -365,7 +365,7 @@ export type InsertableTreeFieldFromImplicitFieldUnsafe<
365365
/**
366366
* {@link Unenforced} version of {@link FieldSchema}.
367367
* @remarks
368-
* Do not use this type directly: its only needed in the implementation of generic logic which define recursive schema, not when using recursive schema.
368+
* Do not use this type directly: it's only needed in the implementation of generic logic which define recursive schema, not when using recursive schema.
369369
* @public
370370
*/
371371
export interface FieldSchemaUnsafe<

0 commit comments

Comments
 (0)