Skip to content

Commit 6453ef8

Browse files
Noam3kCHepoberezkin
andauthoredOct 24, 2021
fix type in doc (#1797)
Co-authored-by: Evgeny Poberezkin <2769109+epoberezkin@users.noreply.github.com>
1 parent 51f0b84 commit 6453ef8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎docs/guide/typescript.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -132,9 +132,9 @@ const validData = {
132132
bar: "abc"
133133
}
134134

135-
if (validate(data)) {
135+
if (validate(validData)) {
136136
// data is MyData here
137-
console.log(data.foo)
137+
console.log(validData.foo)
138138
} else {
139139
console.log(validate.errors)
140140
}

0 commit comments

Comments
 (0)
Please sign in to comment.