Skip to content

Commit

Permalink
added doc in source code, regenerated readme
Browse files Browse the repository at this point in the history
  • Loading branch information
krzkaczor committed Oct 7, 2015
1 parent 0758aee commit c30e271
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -138,8 +138,8 @@ Runs COBOL code from Node.JS side.
- **Function|String|Path** `input`: A function containing a comment with inline COBOL code, the cobol code itself or a path to a COBOL file.
- **Object** `options`: An object containing the following fields:
- `cwd` (String): Where the COBOL code will run (by default in the current working directory)
- `free` (Boolean): Use free option while compiling with GnuCobol
- `args` (Array): An array of strings to pass to the COBOL process.
- `free` (Boolean): Use free option while compiling with GnuCobol
- `stdin` (Stream): An optional stdin stream used to pipe data to the stdin stream of the COBOL process.
- `stderr` (Stream): An optional stderr stream used to pipe data to the stdin stream of the COBOL process.
- `stdeout` (Stream): An optional stdout stream used to pipe data to the stdin stream of the COBOL process.
Expand Down
1 change: 1 addition & 0 deletions lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ var Spawn = require("child_process").spawn
*
* - `cwd` (String): Where the COBOL code will run (by default in the current working directory)
* - `args` (Array): An array of strings to pass to the COBOL process.
* - `free` (Boolean): Use free option while compiling with GnuCobol
* - `stdin` (Stream): An optional stdin stream used to pipe data to the stdin stream of the COBOL process.
* - `stderr` (Stream): An optional stderr stream used to pipe data to the stdin stream of the COBOL process.
* - `stdeout` (Stream): An optional stdout stream used to pipe data to the stdin stream of the COBOL process.
Expand Down

0 comments on commit c30e271

Please sign in to comment.