From 4ad4fdf75c62a34e53036032c6c78fb9bad6a0b3 Mon Sep 17 00:00:00 2001 From: Leo Horie Date: Thu, 30 Jun 2016 23:38:52 -0400 Subject: [PATCH] add missing space --- docs/prop.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/prop.md b/docs/prop.md index 08061983..1ad7fe75 100644 --- a/docs/prop.md +++ b/docs/prop.md @@ -237,7 +237,7 @@ It's of course also possible to compute properties based on multiple streams: var firstName = m.prop("John") var lastName = m.prop("Doe") var fullName = m.prop.combine(function(first, last) { - return first() + last() + return first() + " " + last() }, [firstName, lastName]) firstName("Mary")