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

Fix typo in sources.md code snippet (#101)

vincent 2e89f5cc bdacd44f

Changed files
+1 -1
docs
+1 -1
docs/api/sources.md
···
```typescript
import { makeSubject } from 'wonka'
-
const subject = Wonka.makeSubject();
+
const subject = makeSubject();
const { source, next, complete } = subject;
/* This will push the values synchronously to any subscribers of source */