git: f1f521b0ea - main - handbook/dtrace: Fix formatting

From: Mateusz Piotrowski <0mp_at_FreeBSD.org>
Date: Thu, 17 Jul 2025 22:40:21 UTC
The branch main has been updated by 0mp:

URL: https://cgit.FreeBSD.org/doc/commit/?id=f1f521b0eaffde9fb031a14e527bc5a19173afee

commit f1f521b0eaffde9fb031a14e527bc5a19173afee
Author:     Mateusz Piotrowski <0mp@FreeBSD.org>
AuthorDate: 2025-07-17 22:39:05 +0000
Commit:     Mateusz Piotrowski <0mp@FreeBSD.org>
CommitDate: 2025-07-17 22:39:05 +0000

    handbook/dtrace: Fix formatting
    
    For some reason if you have two monospaced fragments touching one
    another asciidoc get confused.
---
 documentation/content/en/books/handbook/dtrace/_index.adoc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/documentation/content/en/books/handbook/dtrace/_index.adoc b/documentation/content/en/books/handbook/dtrace/_index.adoc
index 7e9dfc52f4..844e3b3419 100644
--- a/documentation/content/en/books/handbook/dtrace/_index.adoc
+++ b/documentation/content/en/books/handbook/dtrace/_index.adoc
@@ -93,7 +93,7 @@ Beginning with FreeBSD 10.0-RELEASE, the modules are automatically loaded when m
 FreeBSD uses the `DDB_CTF` kernel option to enable support for loading man:ctf[5] data from kernel modules and the kernel itself.
 `CTF` is the Solaris(TM) Compact C Type Format which encapsulates a reduced form of debugging information similar to `DWARF` and the venerable stabs.
 `CTF` data is added to binaries by the man:ctfconvert[1] and man:ctfmerge[1] build tools.
-The `ctfconvert` utility parses `DWARF``ELF` debug sections created by the compiler and `ctfmerge` merges `CTF``ELF` sections from objects into either executables or shared libraries.
+The `ctfconvert` utility parses `DWARF` `ELF` debug sections created by the compiler and `ctfmerge` merges `CTF` `ELF` sections from objects into either executables or shared libraries.
 
 Some different providers exist for FreeBSD than for Solaris(TM).
 Most notable is the `dtmalloc` provider, which allows tracing man:malloc[9] by type in the FreeBSD kernel.