The commands 'make pdfdocs' and make 'htmldocs' were formatted with backticks. which caused confusion in some contexts, like GitHub. However, using tripple backticks is not universally compatible. This patch replaces backticks with normal quotes to ensure clarity and compatibility across all rendering contexts. Signed-off-by: Carlo K <carlodelos90@xxxxxxxxx> --- README | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README b/README index fd903645e6de..c1d280c622e9 100644 --- a/README +++ b/README @@ -5,8 +5,8 @@ There are several guides for kernel developers and users. These guides can be rendered in a number of formats, like HTML and PDF. Please read Documentation/admin-guide/README.rst first. -In order to build the documentation, use ``make htmldocs`` or -``make pdfdocs``. The formatted documentation can also be read online at: +In order to build the documentation, use "make htmldocs" or +"make pdfdocs". The formatted documentation can also be read online at: https://www.kernel.org/doc/html/latest/ -- 2.39.5 (Apple Git-154)