1
0
mirror of https://github.com/go-task/task.git synced 2025-08-10 22:42:19 +02:00

fix: typos in docs, changelog, testdata, comments (#1910)

This commit is contained in:
Oleksandr Redko
2024-11-07 18:25:59 +02:00
committed by GitHub
parent c3bd6b9384
commit 390220ec9c
12 changed files with 48 additions and 48 deletions

View File

@@ -2,7 +2,7 @@ version: '3'
tasks:
task-with-summary:
deps: [dependend-task-1, dependend-task-2]
deps: [dependent-task-1, dependent-task-2]
summary: |
summary of task-with-summary - line 1
line 2
@@ -17,10 +17,10 @@ tasks:
cmds:
- echo 'other-task-with-summary was executed'
dependend-task-1:
dependent-task-1:
cmds:
- echo 'dependend-task-1 was executed'
- echo 'dependent-task-1 was executed'
dependend-task-2:
dependent-task-2:
cmds:
- echo 'dependend-task-2 was executed'
- echo 'dependent-task-2 was executed'

View File

@@ -5,8 +5,8 @@ line 2
line 3
dependencies:
- dependend-task-1
- dependend-task-2
- dependent-task-1
- dependent-task-2
commands:
- echo 'task-with-summary was executed'