From 19f12003142d83274899561c134955e4de507956 Mon Sep 17 00:00:00 2001 From: Andrey Nering Date: Sun, 5 Mar 2017 17:18:47 -0300 Subject: [PATCH] Fix typos --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 21b38f00..3aad21ff 100644 --- a/README.md +++ b/README.md @@ -194,14 +194,14 @@ Result: 'abc' ### Go's template engine Task parse commands as [Go's template engine][gotemplate] before executing -them. Variables are acessible trought dot syntax (`.VARNAME`). The following +them. Variables are acessible through dot syntax (`.VARNAME`). The following functions are available: - `OS`: return operating system. Possible values are "windows", "linux", "darwin" (macOS) and "freebsd". - `ARCH`: return the architecture Task was compiled to: "386", "amd64", "arm" or "s390x". -- `IsSH`: on unix system this should always return `true`. On Windows, will +- `IsSH`: on unix systems this should always return `true`. On Windows, will return `true` if `sh` command was found (Git Bash). In this case commands will run on `sh`. Otherwise, this function will return `false` meaning commands will run on `cmd`.