We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 12eb019 commit 9916a28Copy full SHA for 9916a28
1 file changed
common/value.ts
@@ -20,9 +20,9 @@ const VALUE_KIND_NAMES = [
20
'String',
21
'Int',
22
'BigDecimal',
23
- 'Bool',
+ 'bool',
24
'Array',
25
- 'Null',
+ 'null',
26
'Bytes',
27
'BigInt',
28
]
@@ -172,7 +172,7 @@ export class Value {
172
case ValueKind.BIGINT:
173
return this.toBigInt().toString()
174
default:
175
- return `Unknwon data (kind = ${this.kind})`
+ return `Unknown data (kind = ${this.kind})`
176
}
177
178
0 commit comments