Skip to content

Commit 4464d60

Browse files
committed
contributors.yml
1 parent 713998b commit 4464d60

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

contributors.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,6 @@
209209
- marvinruder
210210
- mathpaquette
211211
- matt-harro
212-
- maximevtush
213212
- maxpou
214213
- mcansh
215214
- MeatSim
@@ -243,7 +242,6 @@
243242
- omahs
244243
- omar-moquete
245244
- OnurGvnc
246-
- otabekshoyimov
247245
- p13i
248246
- parched
249247
- parveen232
@@ -267,6 +265,7 @@
267265
- robbtraister
268266
- RobHannay
269267
- robinvdvleuten
268+
- rossipedia
270269
- rtmann
271270
- rtzll
272271
- rubeonline

packages/react-router-node/stream.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ export const createReadableStreamFromReadable = (
7373

7474
class StreamPump {
7575
public highWaterMark: number;
76-
public accumulatedSize: number;
76+
public accumalatedSize: number;
7777
private stream: Stream & {
7878
readableHighWaterMark?: number;
7979
readable?: boolean;
@@ -95,7 +95,7 @@ class StreamPump {
9595
this.highWaterMark =
9696
stream.readableHighWaterMark ||
9797
new Stream.Readable().readableHighWaterMark;
98-
this.accumulatedSize = 0;
98+
this.accumalatedSize = 0;
9999
this.stream = stream;
100100
this.enqueue = this.enqueue.bind(this);
101101
this.error = this.error.bind(this);

0 commit comments

Comments
 (0)