Skip to content

Commit 2fee456

Browse files
Merge pull request #1265 from edshav/fix/typo-sting-to-string
docs: fix 'sting' typo to 'string' across multiple type inference examples
2 parents cb48216 + ef5ae85 commit 2fee456

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

website/src/routes/api/(types)/InferNonNullableInput/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ contributors:
1010
Infer non nullable input type.
1111

1212
```ts
13-
// Create nullable sting schema
13+
// Create nullable string schema
1414
const NullableStringSchema = v.nullable(
1515
v.pipe(
1616
v.string(),

website/src/routes/api/(types)/InferNonNullableOutput/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ contributors:
1010
Infer non nullable output type.
1111

1212
```ts
13-
// Create nullable sting schema
13+
// Create nullable string schema
1414
const NullableStringSchema = v.nullable(
1515
v.pipe(
1616
v.string(),

website/src/routes/api/(types)/InferNonNullishInput/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ contributors:
1010
Infer non nullable input type.
1111

1212
```ts
13-
// Create nullish sting schema
13+
// Create nullish string schema
1414
const NullishStringSchema = v.nullish(
1515
v.pipe(
1616
v.string(),

website/src/routes/api/(types)/InferNonNullishOutput/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ contributors:
1010
Infer non nullable output type.
1111

1212
```ts
13-
// Create nullish sting schema
13+
// Create nullish string schema
1414
const NullishStringSchema = v.nullish(
1515
v.pipe(
1616
v.string(),

website/src/routes/api/(types)/InferNonOptionalInput/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ contributors:
1010
Infer non optional input type.
1111

1212
```ts
13-
// Create optional sting schema
13+
// Create optional string schema
1414
const OptionalStringSchema = v.optional(
1515
v.pipe(
1616
v.string(),

website/src/routes/api/(types)/InferNonOptionalOutput/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ contributors:
1010
Infer non optional output type.
1111

1212
```ts
13-
// Create optional sting schema
13+
// Create optional string schema
1414
const OptionalStringSchema = v.optional(
1515
v.pipe(
1616
v.string(),

0 commit comments

Comments
 (0)