Skip to content
This repository has been archived by the owner on Aug 17, 2023. It is now read-only.

Commit

Permalink
Merge pull request #10 from monkerek/doc_fix
Browse files Browse the repository at this point in the history
fix thunk description issues
  • Loading branch information
zensh committed Aug 27, 2015
2 parents 41ecde2 + e37472a commit 88e07d9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,10 @@ And a mountain of applications in server-side or client-side.

3. **`thunk`** returns another **`thunk`** function after being called, for chaining operations.

4. **`thunk`** would passing the results into a `callback` function after excuted.
4. **`thunk`** passes the results into a `callback` function after being excuted.

5. If `callback` returns a new **`thunk`** function, then it would be send to another **`thunk`** to excute,
or it would be send to another new **`thunk`** function as the value of the computation.
5. If the return value of `callback` is a **`thunk`** function, then it will be executed first and its result will be send to another **`thunk`** for excution,
or it will be send to another new **`thunk`** function as the value of the computation.

## Demo

Expand Down

0 comments on commit 88e07d9

Please sign in to comment.