Mirror: The highly customizable and versatile GraphQL client with which you add on features like normalized caching as you grow.

Misprint (#753)

Changed files
+1 -1
docs
concepts
+1 -1
docs/concepts/exchanges.md
···
import { Client, dedupExchange, fetchExchange } from 'urql';
const noopExchange = ({ client, forward }) => {
-
return operation$ => {
+
return operations$ => {
// <-- The ExchangeIO function
// We receive a stream of Operations from `dedupExchange` which
// we can modify before...