Skip to content
This repository was archived by the owner on Feb 23, 2023. It is now read-only.

Commit 9916a28

Browse files
committed
Fix a few typos
1 parent 12eb019 commit 9916a28

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

common/value.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ const VALUE_KIND_NAMES = [
2020
'String',
2121
'Int',
2222
'BigDecimal',
23-
'Bool',
23+
'bool',
2424
'Array',
25-
'Null',
25+
'null',
2626
'Bytes',
2727
'BigInt',
2828
]
@@ -172,7 +172,7 @@ export class Value {
172172
case ValueKind.BIGINT:
173173
return this.toBigInt().toString()
174174
default:
175-
return `Unknwon data (kind = ${this.kind})`
175+
return `Unknown data (kind = ${this.kind})`
176176
}
177177
}
178178

0 commit comments

Comments
 (0)