]> git.ipfire.org Git - thirdparty/make.git/commitdiff
* doc/make.texi (Special Targets): Fix minor typo
authorPaul Smith <psmith@gnu.org>
Mon, 2 Jan 2023 05:13:28 +0000 (00:13 -0500)
committerPaul Smith <psmith@gnu.org>
Mon, 2 Jan 2023 05:13:28 +0000 (00:13 -0500)
Reported by Andrey Melnikov <vafilor@gmail.com>.

doc/make.texi

index 1e12a6de020e37fad68b5e5dd591e0203f6875ea..29c852a98aca49e9fa0c2453b8afcedc7f46c6c4 100644 (file)
@@ -3074,7 +3074,7 @@ Suppose @file{hello.bin} is up to date in regards to the source files,
 @code{.SECONDARY} make would rebuild @file{hello.o} then rebuild
 @file{hello.bin} even though the source files had not changed.  By declaring
 @file{hello.o} as @code{.SECONDARY} @code{make} will not need to rebuild it
-and won't need to rebuild @file{hello.bin} either.  Of course, of one of the
+and won't need to rebuild @file{hello.bin} either.  Of course, if one of the
 source files @emph{were} updated then all object files would be rebuilt so
 that the creation of @file{hello.bin} could succeed.