[PATCH net-next 1/3] net: dns_resolver: Use reST bullet list for features list

Bagas Sanjaya posted 3 patches 1 week, 2 days ago
There is a newer version of this series
[PATCH net-next 1/3] net: dns_resolver: Use reST bullet list for features list
Posted by Bagas Sanjaya 1 week, 2 days ago
Features overview list uses an asterisk in parentheses (``(*)``)
as bullet list marker, which isn't supported by Sphinx as proper
bullet. Replace it with just asterisk.

Signed-off-by: Bagas Sanjaya <bagasdotme@gmail.com>
---
 Documentation/networking/dns_resolver.rst | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Documentation/networking/dns_resolver.rst b/Documentation/networking/dns_resolver.rst
index c0364f7070af84..5cec37bedf9950 100644
--- a/Documentation/networking/dns_resolver.rst
+++ b/Documentation/networking/dns_resolver.rst
@@ -25,11 +25,11 @@ These routines must be supported by userspace tools dns.upcall, cifs.upcall and
 request-key.  It is under development and does not yet provide the full feature
 set.  The features it does support include:
 
- (*) Implements the dns_resolver key_type to contact userspace.
+ * Implements the dns_resolver key_type to contact userspace.
 
 It does not yet support the following AFS features:
 
- (*) Dns query support for AFSDB resource record.
+ * DNS query support for AFSDB resource record.
 
 This code is extracted from the CIFS filesystem.
 
-- 
An old man doll... just what I always wanted! - Clara
Re: [PATCH net-next 1/3] net: dns_resolver: Use reST bullet list for features list
Posted by Simon Horman 1 week, 1 day ago
On Mon, Sep 22, 2025 at 04:56:46PM +0700, Bagas Sanjaya wrote:
> Features overview list uses an asterisk in parentheses (``(*)``)
> as bullet list marker, which isn't supported by Sphinx as proper
> bullet. Replace it with just asterisk.
> 
> Signed-off-by: Bagas Sanjaya <bagasdotme@gmail.com>

Thanks,

I visually inspected the html output in a browser and confirmed
that before '(*)' was rendered, and now a bullet is.

Reviewed-by: Simon Horman <horms@kernel.org>