add missing space
This commit is contained in:
parent
015a812610
commit
4ad4fdf75c
1 changed files with 1 additions and 1 deletions
|
|
@ -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")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue