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

Commit

Permalink
Fix a few typos
Browse files Browse the repository at this point in the history
  • Loading branch information
lutter committed Feb 25, 2022
1 parent 12eb019 commit 9916a28
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions common/value.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ const VALUE_KIND_NAMES = [
'String',
'Int',
'BigDecimal',
'Bool',
'bool',
'Array',
'Null',
'null',
'Bytes',
'BigInt',
]
Expand Down Expand Up @@ -172,7 +172,7 @@ export class Value {
case ValueKind.BIGINT:
return this.toBigInt().toString()
default:
return `Unknwon data (kind = ${this.kind})`
return `Unknown data (kind = ${this.kind})`
}
}

Expand Down

0 comments on commit 9916a28

Please sign in to comment.