Skip to content

Tweaked "cbwire create" indentation #2

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 11 additions & 11 deletions essentials/creating-components.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,17 +33,17 @@ Below is the entire signature of arguments you can provide to the `create` comma

```javascript
/**
* @name Name of the component to create without the .cfc.
* @actions Comma-delimited list of actions to generate.
* @views Generate a view for the cbwire component.
* @viewsDirectory Directory where your views are stored. Only used if views is set to true.
* @integrationTests Generate the integration test component
* @testsDirectory Your integration tests directory. Only used if integrationTests is true
* @directory Base directory to create your handler in and creates the directory if it does not exist. Defaults to 'handlers'.
* @description Component hint description.
* @open Opens the component (and test(s) if applicable) once generated.
**/
function run(
* @name Name of the component to create without the .cfc.
* @actions Comma-delimited list of actions to generate.
* @views Generate a view for the cbwire component.
* @viewsDirectory Directory where your views are stored. Only used if views is set to true.
* @integrationTests Generate the integration test component
* @testsDirectory Your integration tests directory. Only used if integrationTests is true
* @directory Base directory to create your handler in and creates the directory if it does not exist. Defaults to 'handlers'.
* @description Component hint description.
* @open Opens the component (and test(s) if applicable) once generated.
**/
function run(
required string name,
string actions = "",
boolean views = true,
Expand Down