We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e1f324e commit ba1add2Copy full SHA for ba1add2
lib/engine/most.es6
@@ -1,7 +1,7 @@
1
import most from 'most'
2
export default function mostEngine() {
3
let addToIntentStream = function(){
4
- console.error('intent stream not binded');
+ console.error('intent stream not binded yet');
5
};
6
let intentStream = most.create(add => {
7
addToIntentStream = add;
@@ -13,7 +13,7 @@ export default function mostEngine() {
13
intentStream.drain();
14
intentStream.send = addToIntentStream;
15
let addToHistoryStream = function(){
16
- console.error('history stream not binded');
+ console.error('history stream not binded yet');
17
18
let historyStream = most.create(add => {
19
addToHistoryStream = add;
0 commit comments