Skip to content

Commit b8e7b74

Browse files
authored
Fix [Checkout] typing in documentation (#10097)
Fix Checkout typing in documenations
1 parent 553ab52 commit b8e7b74

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

packages/schema-record/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ interface User {
210210
readonly lastName: string;
211211
readonly name: string;
212212
readonly pets: Readonly<Array<Dog | Pet>>;
213-
[Checkout]: Promise<EditableUser>
213+
[Checkout](): Promise<EditableUser>
214214
}>
215215
```
216216

packages/schema-record/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@
232232
* readonly lastName: string;
233233
* readonly name: string;
234234
* readonly pets: Readonly<Array<Dog | Pet>>;
235-
* [Checkout]: Promise<EditableUser>
235+
* [Checkout](): Promise<EditableUser>
236236
* }>
237237
* ```
238238
*

warp-drive-packages/core/src/reactive.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@
171171
* readonly lastName: string;
172172
* readonly name: string;
173173
* readonly pets: Readonly<Array<Dog | Pet>>;
174-
* [Checkout]: Promise<EditableUser>
174+
* [Checkout](): Promise<EditableUser>
175175
* }>
176176
* ```
177177
*

0 commit comments

Comments
 (0)