Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix listPkg syntax muckup
  • Loading branch information
itdaniher committed Aug 20, 2012
1 parent 5a7c84b commit 052f73c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build/js/ducttape.js
Expand Up @@ -1879,7 +1879,7 @@
},
value: {
main: "# DuctTape help #\nthis is the _main_ section, which can be reached via [" + (dt.symbol()) + ".help()](/pseudoURL/run) or [" + (dt.symbol()) + ".help main](/pseudoURL/run).\n\n## Available help sections \n[(" + (dt.symbol()) + ".pkgGet('help','listSections').value()](/pseudoURL/replace)\n## Help for a function or object\nFor any DuctTape function or object, view the related documentation by typing **" + (dt.symbol()) + ".help _function_**\n\nExample: [" + (dt.symbol()) + ".help " + (dt.symbol()) + ".show](/pseudoURL/run)\n",
intro: "# Welcome to DuctTape #\n_DuctTape_ is an [open source](https://github.com/neumark/ducttape) [CoffeeScript](http://coffeescript.org) [REPL](http://en.wikipedia.org/wiki/REPL) for the web.\n\n## Getting Started ##\nAny valid CoffeeScript expression typed into the console will be translated to JavaScript and executed.\nDuctTape will display the result.\nThe [" + (dt.symbol()) + ".help()](/pseudoURL/run) function can be used to get help about objects included in DuctTape.\nFor example, [" + (dt.symbol()) + ".help " + (dt.symbol()) + ".show](/pseudoURL/run) will describe the _show_ command.\n\n## Key bindings ##\n\n<table><thead><tr><td><b>Key</b></td><td><b>Action</b></td></tr></thead>\n<tbody>\n<tr><td>Enter </td><td>Executes current statement.</td></tr>\n<tr><td>Shift+Enter &nbsp;</td><td> Start a new line (multiline expressions are allowed).</td></tr>\n<tr><td>F2 </td><td>Toggles display of generated JavaScript source.</td></tr>\n<tr><td>Alt+D </td><td>Insert the <i>DuctTape symbol</i> (" + (dt.symbol()) + ").</td></tr>\n<tr><td>up </td><td>Browse command history (go back).</td></tr>\n<tr><td>down </td><td>Browse command history (go forward).</td></tr>\n</tbody></table>\n\n## Useful functions ##\nDuctTape comes with a few convenience functions to make your life easier:\n\n[" + (dt.symbol()) + ".history()](/pseudoURL/run): List previous commands.\n\n[" + (dt.symbol()) + ".last()](/pseudoURL/run): Get the last command issued, along with its result.\n\n[" + (dt.symbol()) + ".clear()](/pseudoURL/run): Erase the result of previous commands.\n\n[" + (dt.symbol()) + ".ov window](/pseudoURL/run): Browse any javascript object (in this case, _window_).\n\nTo view the list of all currently loaded packages and their contents, run [" + (dt.symbol()) + ".listPackages()](/pseudoURL/run).\n\n## DuctTape is extensible ##\nThanks to it's modular architecture, anyone can add commands to DuctTape.\nWrite your own custom packages, and use DuctTape for whatever you want!\n\n## Get Involved! ##\nDo you enjoy using DuctTape, have feature requests or need help developing custom packages?\n\nLet me know! You can find me on [GitHub](https://github.com/neumark).\n\n**Have fun!**\n"
intro: "# Welcome to DuctTape #\n_DuctTape_ is an [open source](https://github.com/neumark/ducttape) [CoffeeScript](http://coffeescript.org) [REPL](http://en.wikipedia.org/wiki/REPL) for the web.\n\n## Getting Started ##\nAny valid CoffeeScript expression typed into the console will be translated to JavaScript and executed.\nDuctTape will display the result.\nThe [" + (dt.symbol()) + ".help()](/pseudoURL/run) function can be used to get help about objects included in DuctTape.\nFor example, [" + (dt.symbol()) + ".help " + (dt.symbol()) + ".show](/pseudoURL/run) will describe the _show_ command.\n\n## Key bindings ##\n\n<table><thead><tr><td><b>Key</b></td><td><b>Action</b></td></tr></thead>\n<tbody>\n<tr><td>Enter </td><td>Executes current statement.</td></tr>\n<tr><td>Shift+Enter &nbsp;</td><td> Start a new line (multiline expressions are allowed).</td></tr>\n<tr><td>F2 </td><td>Toggles display of generated JavaScript source.</td></tr>\n<tr><td>Alt+D </td><td>Insert the <i>DuctTape symbol</i> (" + (dt.symbol()) + ").</td></tr>\n<tr><td>up </td><td>Browse command history (go back).</td></tr>\n<tr><td>down </td><td>Browse command history (go forward).</td></tr>\n</tbody></table>\n\n## Useful functions ##\nDuctTape comes with a few convenience functions to make your life easier:\n\n[" + (dt.symbol()) + ".history()](/pseudoURL/run): List previous commands.\n\n[" + (dt.symbol()) + ".last()](/pseudoURL/run): Get the last command issued, along with its result.\n\n[" + (dt.symbol()) + ".clear()](/pseudoURL/run): Erase the result of previous commands.\n\n[" + (dt.symbol()) + ".ov window](/pseudoURL/run): Browse any javascript object (in this case, _window_).\n\nTo view the list of all currently loaded packages and their contents, run [" + (dt.symbol()) + ".pkgList()](/pseudoURL/run).\n\n## DuctTape is extensible ##\nThanks to it's modular architecture, anyone can add commands to DuctTape.\nWrite your own custom packages, and use DuctTape for whatever you want!\n\n## Get Involved! ##\nDo you enjoy using DuctTape, have feature requests or need help developing custom packages?\n\nLet me know! You can find me on [GitHub](https://github.com/neumark).\n\n**Have fun!**\n"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/coffee/core/help.coffee
Expand Up @@ -132,7 +132,7 @@ define ['corelib'], (corelib) ->
[#{ dt.symbol() }.ov window](/pseudoURL/run): Browse any javascript object (in this case, _window_).
To view the list of all currently loaded packages and their contents, run [#{ dt.symbol() }.listPackages()](/pseudoURL/run).
To view the list of all currently loaded packages and their contents, run [#{ dt.symbol() }.pkgList()](/pseudoURL/run).
## DuctTape is extensible ##
Thanks to it's modular architecture, anyone can add commands to DuctTape.
Expand Down

0 comments on commit 052f73c

Please sign in to comment.