Skip to content

Commit

Permalink
docs: Consistently use backticks to reference Python module components
Browse files Browse the repository at this point in the history
  • Loading branch information
jcfr committed Dec 6, 2024
1 parent 3943920 commit 507c8f9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/cmakelists.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ You can directly use FindPython:
find_package(Python COMPONENTS Interpreter Development.Module REQUIRED)
```

You always want to find at least `Interpreter` and the "Module" component of the
"Development" package. You do not want to find the entire "Development" package,
as that include "Embed" component, which is not always present and is not
You always want to find at least `Interpreter` and the `Module` component of the
`Development` package. You do not want to find the entire `Development` package,
as that include `Embed` component, which is not always present and is not
related to making Python extension modules.

If you are making a Limited API / Stable ABI package, you'll need the
Expand Down

0 comments on commit 507c8f9

Please sign in to comment.