Skip to content

Commit

Permalink
Fix environment variable usage examples in docs after verb context sw…
Browse files Browse the repository at this point in the history
…itch, #27
  • Loading branch information
timvink committed Mar 24, 2021
1 parent 725d21f commit dd4cb3a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions docs/howto/workflow_envvars.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ You can also temporarily set a different default work item type using an [enviro
=== "doing issue create"

```shell
export DOING_CREATE_ISSUE_TYPE="Task"
export DOING_ISSUE_CREATE_TYPE="Task"
doing issue create "A task"
```

Expand Down Expand Up @@ -77,11 +77,11 @@ doing issue create "Thing 10" -t "Task" --parent 1234
You could use:

```shell
export DOING_CREATE_ISSUE_PARENT=1234
export DOING_CREATE_ISSUE_TYPE="Task"
export DOING_ISSUE_CREATE_PARENT=1234
export DOING_ISSUE_CREATE_TYPE="Task"
doing issue create "Thing 1"
doing issue create "Thing 2"
...
doing issue create "Thing 10"
unset DOING_CREATE_ISSUE_PARENT
unset DOING_ISSUE_CREATE_PARENT
```
2 changes: 1 addition & 1 deletion docs/reference/manual/issue_create.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ Overriding the existing config using environment variables:
=== "Bash"

```shell
export DOING_CREATE_ISSUE_ASSIGNED_TO='jane@company.com'
export DOING_ISSUE_CREATE_ASSIGNED_TO='jane@company.com'
doing issue create 'fixing a small typo'
# > Created issue #146545 'fixing a small typo' (User Story)
# > added area-path '{your area path}'
Expand Down

0 comments on commit dd4cb3a

Please sign in to comment.