Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
[fix] nit remove parenthesis
  • Loading branch information
jtenner committed Aug 6, 2019
commit a5579cba6abb76aef75ae8be4511eb8cce2c1033
2 changes: 1 addition & 1 deletion assembly/buffer/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ export class Buffer extends Uint8Array {
let byte = <u32>load<u8>(dataStart + <usize>i);

store<u32>(writeOffset, Buffer.HEX.charsFromByte(byte));
if (i == (maxBytes - 1)) {
if (i == maxBytes - 1) {
if (elipsisEnd) {
// make this a single 64 bit store
store<u64>(writeOffset, <u64>0x003e_002e_002e_002e, 4); // "...>"
Expand Down