Skip to content

Commit

Permalink
fix comment
Browse files Browse the repository at this point in the history
  • Loading branch information
you21979 committed Apr 6, 2018
1 parent 9c79db0 commit 7348fec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/binaryarray.ts
Expand Up @@ -148,7 +148,7 @@ export class BinaryArray{
*/
static loadFromHexString(maxnum : number, hexstr : string) : BinaryArray{
const ba = new BinaryArray(maxnum)
const s = 8 // bitsize
const s = 8 // uint32 hexstring size (4 * 2)
let b = hexstr.length - s
let e = hexstr.length - 0
const n = hexstr.length / s
Expand Down

0 comments on commit 7348fec

Please sign in to comment.