From ba35a75bab74788f9b479231117af968186e403e Mon Sep 17 00:00:00 2001 From: Stephan Hoyer Date: Wed, 3 Jan 2018 17:02:44 +0100 Subject: [PATCH] docs: Fix wrong link targets and typos (#2066) --- docs/stream.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/stream.md b/docs/stream.md index dc720ef4..34818e12 100644 --- a/docs/stream.md +++ b/docs/stream.md @@ -9,10 +9,10 @@ - [Stream.scanMerge](#streamscanmerge) - [Stream.HALT](#streamhalt) - [Stream["fantasy-land/of"]](#streamfantasy-landof) - - [Instance members](#static-members) + - [Instance members](#instance-members) - [stream.map](#streammap) - [stream.end](#streamend) - - [stream["fantasy-land/of"]](#streamfantasy-landof) + - [stream["fantasy-land/of"]](#streamfantasy-landof-1) - [stream["fantasy-land/map"]](#streamfantasy-landmap) - [stream["fantasy-land/ap"]](#streamfantasy-landap) - [Basic usage](#basic-usage) @@ -159,7 +159,7 @@ A special value that can be returned to stream callbacks to halt execution of do This method is functionally identical to `stream`. It exists to conform to [Fantasy Land's Applicative specification](https://github.com/fantasyland/fantasy-land). For more information, see the [What is Fantasy Land](#what-is-fantasy-land) section. -`stream = stream["fantasy-land/of"](value)` +`stream = Stream["fantasy-land/of"](value)` Argument | Type | Required | Description ----------- | -------------------- | -------- | --- @@ -212,7 +212,7 @@ Creates a dependent stream whose value is set to the result of the callback func This method exists to conform to [Fantasy Land's Applicative specification](https://github.com/fantasyland/fantasy-land). For more information, see the [What is Fantasy Land](#what-is-fantasy-land) section. -`dependentStream = stream()["fantasy-land/of"](callback)` +`dependentStream = stream()["fantasy-land/map"](callback)` Argument | Type | Required | Description ------------ | -------------------- | -------- | ---