Skip to content

Commit

Permalink
make partial writable
Browse files Browse the repository at this point in the history
  • Loading branch information
piscisaureus committed May 29, 2019
1 parent c0e8e40 commit 5988292
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion io/bufio.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const LF = charCode("\n");

export class BufferFullError extends Error {
name = "BufferFullError";
constructor(readonly partial: Uint8Array) {
constructor(public partial: Uint8Array) {
super("Buffer full");
}
}
Expand Down

0 comments on commit 5988292

Please sign in to comment.