From 37e4ca87301436e9cb059554f7dfc0f717dcfc7e Mon Sep 17 00:00:00 2001 From: Leo Date: Sun, 8 Jan 2017 14:49:02 -0500 Subject: [PATCH] standardize on Stream as module name --- docs/stream.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/stream.md b/docs/stream.md index ed015664..d2585383 100644 --- a/docs/stream.md +++ b/docs/stream.md @@ -46,7 +46,7 @@ var Stream = require("mithril/stream") Creates a stream -`stream = stream(value)` +`stream = Stream(value)` Argument | Type | Required | Description ----------- | -------------------- | -------- | --- @@ -63,7 +63,7 @@ Argument | Type | Required | Description Creates a computed stream that reactively updates if any of its upstreams are updated. See [combining streams](#combining-streams) -`stream = stream.combine(combiner, streams)` +`stream = Stream.combine(combiner, streams)` Argument | Type | Required | Description ----------- | --------------------------- | -------- | --- @@ -95,7 +95,7 @@ Argument | Type | Required | Description Creates a stream whose value is the array of values from an array of streams -`stream = stream.merge(streams)` +`stream = Stream.merge(streams)` Argument | Type | Required | Description ------------ | -------------------- | -------- | ---