Mirror: 🎩 A tiny but capable push & pull stream library for TypeScript and Flow

Fix typo in TS `take` example (#130)

Changed files
+1 -1
docs
+1 -1
docs/api/operators.md
···
pipe(
interval(10),
throttle(() => 50)
-
takew(2),
+
take(2),
subscribe(val => console.log(val))
); // Outputs 0 6 to the console.
```