Skip to content

Commit

Permalink
Merge pull request #43 from doug-martin/master
Browse files Browse the repository at this point in the history
v0.1.6
  • Loading branch information
doug-martin committed Jun 23, 2013
2 parents 7fa0fa5 + 6e5a998 commit 115c7e1
Show file tree
Hide file tree
Showing 7 changed files with 507 additions and 500 deletions.
4 changes: 4 additions & 0 deletions docs/History.html
Expand Up @@ -178,6 +178,10 @@



<h1>v0.1.6 / 2012-06-17</h1>
<ul>
<li>Fixed issue with the use of next in async actions</li>
</ul>
<h1>v0.1.5 / 2012-06-17</h1>
<ul>
<li>More Examples</li>
Expand Down
13 changes: 6 additions & 7 deletions docs/nools.js

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions history.md
@@ -1,3 +1,7 @@
#v0.1.6 / 2012-06-17

* Fixed issue with the use of next in async actions

#v0.1.5 / 2012-06-17

* More Examples
Expand Down
2 changes: 1 addition & 1 deletion lib/rule.js
Expand Up @@ -108,7 +108,7 @@ var Rule = declare({
var ret = new Promise(), cb = this.cb;
try {
if (cb.length === 3) {
cb.call(flow, match.factHash, flow, ret.classic);
cb.call(flow, match.factHash, flow, ret.resolve);
} else {
ret = cb.call(flow, match.factHash, flow);
}
Expand Down

0 comments on commit 115c7e1

Please sign in to comment.