Merge pull request #1368 from pine3ree/patch-4

prop.md docs typo
This commit is contained in:
Leo Horie 2016-10-24 10:26:26 -04:00 committed by GitHub
commit a6d8e4f12e

View file

@ -555,7 +555,7 @@ var errored2 = m.prop.combine(function(stream) {
if (typeof stream() !== "string") {
throw new Error("Not a string")
}
return value
return stream()
}, [stream])
// errored2 is in an errored state
```