Skip to content

Commit

Permalink
Fix monospace render problem in tutorial
Browse files Browse the repository at this point in the history
According to [documentation](https://docs.asciidoctor.org/asciidoc/latest/text/monospace/)
of AsciiDoc:
As with other types of text formatting, if the text is bounded by
word characters on either side, it must be enclosed in a double
pair of backtick characters (``) in order for the formatting to be
applied.
  • Loading branch information
FantasqueX committed Dec 11, 2023
1 parent 97c7c85 commit ff84bf2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/src/tutorial.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -426,7 +426,7 @@ exe app : app.cpp core ;
This works no matter what kind of linking is used. When `core` is built as a
shared library, links `utils` directly into it. Static libraries can't link
to other libraries, so when `core` is built as a static library, its
dependency on `utils` is passed along to `core`'s dependents, causing `app`
dependency on `utils` is passed along to ``core``'s dependents, causing `app`
to be linked with both `core` and `utils`.
====

Expand Down

0 comments on commit ff84bf2

Please sign in to comment.