summaryrefslogtreecommitdiffstats
path: root/doc/manual.asciidoc
diff options
context:
space:
mode:
authorNico Weber <nicolasweber@gmx.de>2012-05-13 01:27:49 (GMT)
committerNico Weber <nicolasweber@gmx.de>2012-05-13 01:27:49 (GMT)
commit0ad33b919862c7f01f0971b8fc54958a2024e0db (patch)
treead3f7c5e4168b335eaeeb9e417233d1ba7acba16 /doc/manual.asciidoc
parenta5bf22ccdfcb92f2f3134e35158c98523e084264 (diff)
downloadNinja-0ad33b919862c7f01f0971b8fc54958a2024e0db.zip
Ninja-0ad33b919862c7f01f0971b8fc54958a2024e0db.tar.gz
Ninja-0ad33b919862c7f01f0971b8fc54958a2024e0db.tar.bz2
Minor spelling fixes in manual.
Diffstat (limited to 'doc/manual.asciidoc')
-rw-r--r--doc/manual.asciidoc6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/manual.asciidoc b/doc/manual.asciidoc
index d9a6188..5de9638 100644
--- a/doc/manual.asciidoc
+++ b/doc/manual.asciidoc
@@ -123,7 +123,7 @@ but they are not part of make itself.)
you can print e.g. `CC foo.o` instead of a long command line while
building.
-* Builds are always run in parallel, based by defaulton the number of
+* Builds are always run in parallel, based by default on the number of
CPUs your system has. Underspecified build dependencies will result
in incorrect builds.
@@ -143,7 +143,7 @@ full details of the implementation -- like how to get C header
interdependencies correct and fast when using MSVC's compiler -- is
not yet complete.
-If your project is small, Ninja's speed impact is likely unnoticable.
+If your project is small, Ninja's speed impact is likely unnoticeable.
Some build timing numbers are included below. (However, even for
small projects it sometimes turns out that Ninja's limited syntax
forces simpler build rules that result in faster builds.) Another way
@@ -151,7 +151,7 @@ to say this is that if you're happy with the edit-compile cycle time
of your project already then Ninja won't help.
There are many other build systems that are more user-friendly or
-featureful than Ninja itself. For some recomendations: the Ninja
+featureful than Ninja itself. For some recommendations: the Ninja
author found http://gittup.org/tup/[the tup build system] influential
in Ninja's design, and thinks https://github.com/apenwarr/redo[redo]'s
design is quite clever.