Skip to content

Commit

Permalink
fixed formatting glitch in API.md
Browse files Browse the repository at this point in the history
  • Loading branch information
bjouhier committed Dec 3, 2011
1 parent c4ce025 commit cad5fc3
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions API.md
@@ -1,3 +1,4 @@

# streamline/lib/callbacks/transform

Streamline's transformation engine
Expand Down
2 changes: 2 additions & 0 deletions lib/util/flows--fibers.js
Expand Up @@ -306,6 +306,8 @@
///
/// ## Miscellaneous
///
/// Utility functions:
///
/// * `flows.nextTick(_)`
/// `nextTick` function for both browser and server.
/// Aliased to `process.nextTick` on the server side.
Expand Down
2 changes: 2 additions & 0 deletions lib/util/flows.js
Expand Up @@ -309,6 +309,8 @@





exports.nextTick = (((typeof process === "object") && (typeof process.nextTick === "function")) ? process.nextTick : function(callback) {

setTimeout(function() { callback(); }, 0); });
Expand Down
2 changes: 2 additions & 0 deletions lib/util/flows_.js
Expand Up @@ -306,6 +306,8 @@
///
/// ## Miscellaneous
///
/// Utility functions:
///
/// * `flows.nextTick(_)`
/// `nextTick` function for both browser and server.
/// Aliased to `process.nextTick` on the server side.
Expand Down

0 comments on commit cad5fc3

Please sign in to comment.