Skip to content

Commit e06ca34

Browse files
committed
Slightly better changelog formatting
1 parent ddbba8e commit e06ca34

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

CHANGELOG.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@ The ability to run tasks in parallel also made it more sensible for tasks to be
2323
As such, tasks now take a new, optional parameter `name` which is used to identify the task instance and takes over the duty of the section title in the configuration file.
2424

2525
```toml
26-
[tasks.example] <== This previously determined the task that would run
26+
[tasks.example] # <== This previously determined the task that would run
2727
type = "custom"
2828

29-
[tasks.my_random_identifier] <== Tasks can now have arbitrary names, allowing multi-instancing
29+
[tasks.my_random_identifier] # <== Tasks can now have arbitrary names, allowing multi-instancing
3030
type = "custom"
31-
name = "example" <== This is now a task parameter
31+
name = "example" # <== This is now a task parameter
3232
```
3333

3434
Before this change, the names of task sections in the config file were a limiting factor as only one section could be named `tasks.example` and could thus refer to that specific custom task. Now tasks can be named arbitrarily, allowing for multiple instances of the same task to be run in parallel. The following invokes the task `ExamleTask` twice, with different names:

0 commit comments

Comments
 (0)