Skip to content

Commit

Permalink
minor documentation improvement
Browse files Browse the repository at this point in the history
  • Loading branch information
eldritchreality committed May 1, 2016
1 parent a12d245 commit 504911e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion propagator-cell.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ function Cell () {

this.update = function update(update,caller) {
//check invariants
assert(typeof update !== "undefined","Tried to update a cell without sending a value")
if (typeof update !== "undefined","Tried to update a cell without sending a value")
caller = caller || false

//check permissions
Expand Down
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ output: `name : value`

#### Propagators
Found at propagator.js
Propagators do something with a value when it has changed. They carry no state, they are purely a function of cells.
Propagators do something with a value when it has changed. They carry no state, they are purely a function of cells. Propagators will not run until all their upstream cells hold values.
This is the primary interface to the module, you can access all constructors as methods on the Propagator object.

methods:
Expand Down

0 comments on commit 504911e

Please sign in to comment.