File tree Expand file tree Collapse file tree 6 files changed +6
-6
lines changed
website/src/routes/api/(types) Expand file tree Collapse file tree 6 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ contributors:
10
10
Infer non nullable input type.
11
11
12
12
``` ts
13
- // Create nullable sting schema
13
+ // Create nullable string schema
14
14
const NullableStringSchema = v .nullable (
15
15
v .pipe (
16
16
v .string (),
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ contributors:
10
10
Infer non nullable output type.
11
11
12
12
``` ts
13
- // Create nullable sting schema
13
+ // Create nullable string schema
14
14
const NullableStringSchema = v .nullable (
15
15
v .pipe (
16
16
v .string (),
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ contributors:
10
10
Infer non nullable input type.
11
11
12
12
``` ts
13
- // Create nullish sting schema
13
+ // Create nullish string schema
14
14
const NullishStringSchema = v .nullish (
15
15
v .pipe (
16
16
v .string (),
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ contributors:
10
10
Infer non nullable output type.
11
11
12
12
``` ts
13
- // Create nullish sting schema
13
+ // Create nullish string schema
14
14
const NullishStringSchema = v .nullish (
15
15
v .pipe (
16
16
v .string (),
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ contributors:
10
10
Infer non optional input type.
11
11
12
12
``` ts
13
- // Create optional sting schema
13
+ // Create optional string schema
14
14
const OptionalStringSchema = v .optional (
15
15
v .pipe (
16
16
v .string (),
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ contributors:
10
10
Infer non optional output type.
11
11
12
12
``` ts
13
- // Create optional sting schema
13
+ // Create optional string schema
14
14
const OptionalStringSchema = v .optional (
15
15
v .pipe (
16
16
v .string (),
You can’t perform that action at this time.
0 commit comments