Skip to content

Commit d6ac6b0

Browse files
committed
Add titles to concept pages
1 parent 7ede683 commit d6ac6b0

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

docs/concepts/modular_analysis.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@ title: Modular analysis
44
parent: Concepts
55
---
66

7-
A modular analysis can analyze *parts* of a program, for instance,
7+
# Modular analysis
8+
9+
A **modular analysis** can analyze *parts* of a program, for instance,
810
analyze a function `f` without having access to the code of the
911
functions that call `f` or are called by `f`.
1012

docs/concepts/whole_program_analysis.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,13 @@ title: Whole-program analysis
44
parent: Concepts
55
---
66

7-
A whole-program analysis requires the analyzer to know the entire
7+
## Whole program analysis
8+
9+
A **whole-program analysis** requires the analyzer to know the entire
810
program to start. It thus cannot[^1] be applied to parts of a program like
911
a library or a single function, unlike a [modular
1012
analysis](/docs/concepts/modular_analysis.html).
1113

1214
Codex allows performing both modular and whole-program analyses.
1315

14-
[^1]: Note that it is often possible to work around the problem by inserting stubs, but these remains work-arounds.
16+
[^1]: Note that it is often possible to work around the problem by inserting stubs, but these remains workarounds.

0 commit comments

Comments
 (0)