From dfc71dce33dc5e086e36b2472911e7d4d176065a Mon Sep 17 00:00:00 2001 From: r3drock <2499754-r3drock@users.noreply.gitlab.com> Date: Tue, 9 Jun 2020 14:44:12 +0000 Subject: [PATCH] Fix typo --- chapters/basics/programs.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chapters/basics/programs.md b/chapters/basics/programs.md index d9f2e69..a033e66 100644 --- a/chapters/basics/programs.md +++ b/chapters/basics/programs.md @@ -21,7 +21,7 @@ endif() ## Running a command at build time -Build time commands are a bit tricker. The main complication comes from the target system; when do you want your command to run? Does it produce an output that another target needs? With this in mind, here is an example that calls a Python script to generate a header file: +Build time commands are a bit trickier. The main complication comes from the target system; when do you want your command to run? Does it produce an output that another target needs? With this in mind, here is an example that calls a Python script to generate a header file: ```cmake find_package(PythonInterp REQUIRED)