Skip to content

Commit ba1add2

Browse files
committed
update error msg
1 parent e1f324e commit ba1add2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/engine/most.es6

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import most from 'most'
22
export default function mostEngine() {
33
let addToIntentStream = function(){
4-
console.error('intent stream not binded');
4+
console.error('intent stream not binded yet');
55
};
66
let intentStream = most.create(add => {
77
addToIntentStream = add;
@@ -13,7 +13,7 @@ export default function mostEngine() {
1313
intentStream.drain();
1414
intentStream.send = addToIntentStream;
1515
let addToHistoryStream = function(){
16-
console.error('history stream not binded');
16+
console.error('history stream not binded yet');
1717
};
1818
let historyStream = most.create(add => {
1919
addToHistoryStream = add;

0 commit comments

Comments
 (0)