From e6b543c15eaea811a012043c608d24e9ea0874d4 Mon Sep 17 00:00:00 2001 From: Arnold <62089140+central182@users.noreply.github.com> Date: Tue, 7 Jul 2020 15:58:12 +0900 Subject: [PATCH] Fix some typos in the documentation --- docs/taskfile_versions.md | 8 ++++---- docs/usage.md | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/docs/taskfile_versions.md b/docs/taskfile_versions.md index a318f12a..45691152 100644 --- a/docs/taskfile_versions.md +++ b/docs/taskfile_versions.md @@ -9,8 +9,8 @@ The Taskfile version follows the Task version. E.g. the change to Taskfile version `2` means that Task `v2.0.0` should be release to support it. The `version:` key on Taskfile accepts a semver string, so either `2`, `2.0` or -`2.0.0` is accepted. You you choose to use `2.0` Task will not enable future -`2.1` features, but if you choose to use `2`, than any `2.x.x` features will be +`2.0.0` is accepted. If you choose to use `2.0` Task will not enable future +`2.1` features, but if you choose to use `2`, then any `2.x.x` features will be available, but not `3.0.0+`. ## Version 1 @@ -33,7 +33,7 @@ The variable priority order was also different: ## Version 2.0 -At version 2, we introduced the `version:` key, to allow us to envolve Task +At version 2, we introduced the `version:` key, to allow us to evolve Task with new features without breaking existing Taskfiles. The new syntax is as follows: @@ -108,7 +108,7 @@ tasks: prefix: server ``` -From this version it's not also possible to ignore errors of a command or task +From this version it's also possible to ignore errors of a command or task (check documentation [here][ignore_errors]): ```yaml diff --git a/docs/usage.md b/docs/usage.md index ae612ee9..74c6c1a7 100644 --- a/docs/usage.md +++ b/docs/usage.md @@ -608,7 +608,7 @@ would print the following output: ## Display summary of task -Running `task --summary task-name` will show a summary of a task +Running `task --summary task-name` will show a summary of a task. The following Taskfile: ```yaml @@ -620,7 +620,7 @@ tasks: summary: | Release your project to github - It will build your project before starting the release it. + It will build your project before starting the release. Please make sure that you have set GITHUB_TOKEN before starting. cmds: - your-release-tool @@ -637,7 +637,7 @@ task: release Release your project to github -It will build your project before starting the release it. +It will build your project before starting the release. Please make sure that you have set GITHUB_TOKEN before starting. dependencies: