From f4f1226270d87e0545bd038c0719961a93adc136 Mon Sep 17 00:00:00 2001 From: Kefu Chai Date: Wed, 25 Jun 2025 11:34:50 +0800 Subject: [PATCH] doc: Fix unterminated inline literal in ceph-conf.rst Add missing space after closing backticks to properly terminate inline literal. Sphinx was generating a warning due to an unterminated inline literal string: ``` /home/kefu/dev/ceph/doc/rados/configuration/ceph-conf.rst:320: WARNING: Inline literal start-string without end-string. ``` This fix ensures the inline literal is properly closed and eliminates the build warning. Signed-off-by: Kefu Chai (cherry picked from commit 7f79f3d6aa7f71c9b2434b843036a3f1da660231) --- doc/rados/configuration/ceph-conf.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/rados/configuration/ceph-conf.rst b/doc/rados/configuration/ceph-conf.rst index 8eef549f96a4e..035e9d7158915 100644 --- a/doc/rados/configuration/ceph-conf.rst +++ b/doc/rados/configuration/ceph-conf.rst @@ -318,7 +318,7 @@ ago``". Be careful to not place a backslash at the end of the final line of the multi-line string. An option value setting in a local config file ends with a newline. -A comment prefixed with ``#``may be added before the newline. +A comment prefixed with ``#`` may be added before the newline. Examples: -- 2.39.5