summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorDimitris Apostolou <dimitris.apostolou@icloud.com>2020-07-05 13:57:33 (GMT)
committerJan Niklas Hasse <jhasse@bixense.com>2020-07-07 11:00:22 (GMT)
commit6c5e886aacd98766fe43539c2c8ae7f3ca2af2aa (patch)
tree65675f90debdf1a963c91bfa871d7f723f1e19cc /doc
parent48a9fb5d0de6f7bb850863d122ba736b62546746 (diff)
downloadNinja-6c5e886aacd98766fe43539c2c8ae7f3ca2af2aa.zip
Ninja-6c5e886aacd98766fe43539c2c8ae7f3ca2af2aa.tar.gz
Ninja-6c5e886aacd98766fe43539c2c8ae7f3ca2af2aa.tar.bz2
Fix typos
Diffstat (limited to 'doc')
-rw-r--r--doc/manual.asciidoc4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/manual.asciidoc b/doc/manual.asciidoc
index 9976ce4..e1ae083 100644
--- a/doc/manual.asciidoc
+++ b/doc/manual.asciidoc
@@ -899,7 +899,7 @@ set environment variables.
On Windows, commands are strings, so Ninja passes the `command` string
directly to `CreateProcess`. (In the common case of simply executing
a compiler this means there is less overhead.) Consequently the
-quoting rules are deterimined by the called program, which on Windows
+quoting rules are determined by the called program, which on Windows
are usually provided by the C library. If you need shell
interpretation of the command (such as the use of `&&` to chain
multiple commands), make the command execute the Windows shell by
@@ -935,7 +935,7 @@ There are three types of build dependencies which are subtly different.
1. _Explicit dependencies_, as listed in a build line. These are
available as the `$in` variable in the rule. Changes in these files
- cause the output to be rebuilt; if these file are missing and
+ cause the output to be rebuilt; if these files are missing and
Ninja doesn't know how to build them, the build is aborted.
+
This is the standard form of dependency to be used e.g. for the