diff options
author | Evan Martin <martine@danga.com> | 2013-03-10 00:50:34 (GMT) |
---|---|---|
committer | Evan Martin <martine@danga.com> | 2013-03-10 00:50:34 (GMT) |
commit | dad0649d4ba0ee4a74ed15360801e7e11f251907 (patch) | |
tree | c76554a187eea958a8bd9a16abb2976c82d21f5c /doc/manual.asciidoc | |
parent | 5cb9bf616137bc8b3b367e712c6bd5cbf1b3a985 (diff) | |
parent | 5f3429b14d50b0e937e37c546e648b54dd1b9a2d (diff) | |
download | Ninja-dad0649d4ba0ee4a74ed15360801e7e11f251907.zip Ninja-dad0649d4ba0ee4a74ed15360801e7e11f251907.tar.gz Ninja-dad0649d4ba0ee4a74ed15360801e7e11f251907.tar.bz2 |
Merge pull request #499 from lht/patch-1
Fix typo in manual
Diffstat (limited to 'doc/manual.asciidoc')
-rw-r--r-- | doc/manual.asciidoc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/manual.asciidoc b/doc/manual.asciidoc index ac2326c..119ccfd 100644 --- a/doc/manual.asciidoc +++ b/doc/manual.asciidoc @@ -391,7 +391,7 @@ rule cc # If left unspecified, builds get the outer $cflags. build foo.o: cc foo.c -# But you can can shadow variables like cflags for a particular build. +# But you can shadow variables like cflags for a particular build. build special.o: cc special.c cflags = -Wall @@ -628,7 +628,7 @@ across a line break). paths, where a space would otherwise separate filenames. See below.) `$:` :: a colon. (This is only necessary in `build` lines, where a colon -would otherwise terminate the list of inputs.) +would otherwise terminate the list of outputs.) `$$`:: a literal `$`. |