Skip to content

Commit e45f5d4

Browse files
committed
minor fixes in titles for consistency
1 parent 236e7b9 commit e45f5d4

File tree

8 files changed

+10
-10
lines changed

8 files changed

+10
-10
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,10 +75,10 @@
7575
### [Chapter 5: Configure-time and Build-time Operations](chapter-05/README.md)
7676

7777
- [1. Using platform-independent file operations](chapter-05/recipe-01/README.md)
78-
- [2. Running a custom command at configure-time](chapter-05/recipe-02/README.md)
78+
- [2. Running a custom command at configure time](chapter-05/recipe-02/README.md)
7979
- [3. Running a custom command at build time: I. Using add_custom_command](chapter-05/recipe-03/README.md)
8080
- [4. Running a custom command at build time: II. Using add_custom_target](chapter-05/recipe-04/README.md)
81-
- [5. Running custom commands for specific targets at build-time](chapter-05/recipe-05/README.md)
81+
- [5. Running custom commands for specific targets at build time](chapter-05/recipe-05/README.md)
8282
- [6. Probing compilation and linking](chapter-05/recipe-06/README.md)
8383
- [7. Probing compiler flags](chapter-05/recipe-07/README.md)
8484
- [8. Probing execution](chapter-05/recipe-08/README.md)

chapter-05/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# Chapter 5: Configure-time and Build-time Operations
22

33
- [1. Using platform-independent file operations](recipe-01/README.md)
4-
- [2. Running a custom command at configure-time](recipe-02/README.md)
4+
- [2. Running a custom command at configure time](recipe-02/README.md)
55
- [3. Running a custom command at build time: I. Using add_custom_command](recipe-03/README.md)
66
- [4. Running a custom command at build time: II. Using add_custom_target](recipe-04/README.md)
7-
- [5. Running custom commands for specific targets at build-time](recipe-05/README.md)
7+
- [5. Running custom commands for specific targets at build time](recipe-05/README.md)
88
- [6. Probing compilation and linking](recipe-06/README.md)
99
- [7. Probing compiler flags](recipe-07/README.md)
1010
- [8. Probing execution](recipe-08/README.md)

chapter-05/recipe-02/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Running a custom command at configure-time
1+
# Running a custom command at configure time
22

33
Abstract to be written ...
44

chapter-05/recipe-02/title.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Running a custom command at configure-time
1+
Running a custom command at configure time

chapter-05/recipe-05/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Running custom commands for specific targets at build-time
1+
# Running custom commands for specific targets at build time
22

33
Abstract to be written ...
44

chapter-05/recipe-05/title.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Running custom commands for specific targets at build-time
1+
Running custom commands for specific targets at build time

chapter-06/recipe-02/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ time. In other words, if you remove the generated `print_info.c` after the
1313
configure step, this file will not be regenerated and the build step will fail.
1414
To proper mimic the behavior of `configure_file` we would
1515
require `add_custom_command` and `add_custom_target`, which we will use in the
16-
subsequent recipe 3, *Generating source code at build-time using Python*, where
16+
subsequent recipe 3, *Generating source code at build time using Python*, where
1717
we will overcome this limitation.
1818

1919

chapter-06/recipe-02/abstract.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ time. In other words, if you remove the generated `print_info.c` after the
1111
configure step, this file will not be regenerated and the build step will fail.
1212
To proper mimic the behavior of `configure_file` we would
1313
require `add_custom_command` and `add_custom_target`, which we will use in the
14-
subsequent recipe 3, *Generating source code at build-time using Python*, where
14+
subsequent recipe 3, *Generating source code at build time using Python*, where
1515
we will overcome this limitation.

0 commit comments

Comments
 (0)