linux-doc.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH net-next v2] Documentation: netconsole: Separate literal code blocks for full and short netcat command name versions
@ 2025-10-30  7:50 Bagas Sanjaya
  2025-10-30 18:31 ` Randy Dunlap
  2025-11-01  0:30 ` patchwork-bot+netdevbpf
  0 siblings, 2 replies; 3+ messages in thread
From: Bagas Sanjaya @ 2025-10-30  7:50 UTC (permalink / raw)
  To: Linux Kernel Mailing List, Linux Documentation, Linux Networking
  Cc: Breno Leitao, David S. Miller, Eric Dumazet, Jakub Kicinski,
	Paolo Abeni, Simon Horman, Jonathan Corbet, Randy Dunlap,
	Bagas Sanjaya

Both full and short (abbreviated) command name versions of netcat
example are combined in single literal code block due to 'or::'
paragraph being indented one more space than the preceding paragraph
(before the short version example).

Unindent it to separate the versions.

Signed-off-by: Bagas Sanjaya <bagasdotme@gmail.com>
---
Changes since v1 [1]:

  - Apply proofreading suggestions on patch title and description (Randy)

[1]: https://lore.kernel.org/linux-doc/20251029015940.10350-1-bagasdotme@gmail.com/

 Documentation/networking/netconsole.rst | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Documentation/networking/netconsole.rst b/Documentation/networking/netconsole.rst
index 59cb9982afe60a..0816ce64dcfd68 100644
--- a/Documentation/networking/netconsole.rst
+++ b/Documentation/networking/netconsole.rst
@@ -91,7 +91,7 @@ for example:
 
 	nc -u -l -p <port>' / 'nc -u -l <port>
 
-    or::
+   or::
 
 	netcat -u -l -p <port>' / 'netcat -u -l <port>
 

base-commit: 1bae0fd90077875b6c9c853245189032cbf019f7
-- 
An old man doll... just what I always wanted! - Clara


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH net-next v2] Documentation: netconsole: Separate literal code blocks for full and short netcat command name versions
  2025-10-30  7:50 [PATCH net-next v2] Documentation: netconsole: Separate literal code blocks for full and short netcat command name versions Bagas Sanjaya
@ 2025-10-30 18:31 ` Randy Dunlap
  2025-11-01  0:30 ` patchwork-bot+netdevbpf
  1 sibling, 0 replies; 3+ messages in thread
From: Randy Dunlap @ 2025-10-30 18:31 UTC (permalink / raw)
  To: Bagas Sanjaya, Linux Kernel Mailing List, Linux Documentation,
	Linux Networking
  Cc: Breno Leitao, David S. Miller, Eric Dumazet, Jakub Kicinski,
	Paolo Abeni, Simon Horman, Jonathan Corbet



On 10/30/25 12:50 AM, Bagas Sanjaya wrote:
> Both full and short (abbreviated) command name versions of netcat
> example are combined in single literal code block due to 'or::'
> paragraph being indented one more space than the preceding paragraph
> (before the short version example).
> 
> Unindent it to separate the versions.
> 
> Signed-off-by: Bagas Sanjaya <bagasdotme@gmail.com>

Reviewed-by: Randy Dunlap <rdunlap@infradead.org>
Tested-by: Randy Dunlap <rdunlap@infradead.org>

again.

> ---
> Changes since v1 [1]:
> 
>   - Apply proofreading suggestions on patch title and description (Randy)
> 
> [1]: https://lore.kernel.org/linux-doc/20251029015940.10350-1-bagasdotme@gmail.com/
> 
>  Documentation/networking/netconsole.rst | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/Documentation/networking/netconsole.rst b/Documentation/networking/netconsole.rst
> index 59cb9982afe60a..0816ce64dcfd68 100644
> --- a/Documentation/networking/netconsole.rst
> +++ b/Documentation/networking/netconsole.rst
> @@ -91,7 +91,7 @@ for example:
>  
>  	nc -u -l -p <port>' / 'nc -u -l <port>
>  
> -    or::
> +   or::
>  
>  	netcat -u -l -p <port>' / 'netcat -u -l <port>
>  
> 
> base-commit: 1bae0fd90077875b6c9c853245189032cbf019f7

-- 
~Randy

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH net-next v2] Documentation: netconsole: Separate literal code blocks for full and short netcat command name versions
  2025-10-30  7:50 [PATCH net-next v2] Documentation: netconsole: Separate literal code blocks for full and short netcat command name versions Bagas Sanjaya
  2025-10-30 18:31 ` Randy Dunlap
@ 2025-11-01  0:30 ` patchwork-bot+netdevbpf
  1 sibling, 0 replies; 3+ messages in thread
From: patchwork-bot+netdevbpf @ 2025-11-01  0:30 UTC (permalink / raw)
  To: Bagas Sanjaya
  Cc: linux-kernel, linux-doc, netdev, leitao, davem, edumazet, kuba,
	pabeni, horms, corbet, rdunlap

Hello:

This patch was applied to netdev/net-next.git (main)
by Jakub Kicinski <kuba@kernel.org>:

On Thu, 30 Oct 2025 14:50:13 +0700 you wrote:
> Both full and short (abbreviated) command name versions of netcat
> example are combined in single literal code block due to 'or::'
> paragraph being indented one more space than the preceding paragraph
> (before the short version example).
> 
> Unindent it to separate the versions.
> 
> [...]

Here is the summary with links:
  - [net-next,v2] Documentation: netconsole: Separate literal code blocks for full and short netcat command name versions
    https://git.kernel.org/netdev/net-next/c/a7aca10c0091

You are awesome, thank you!
-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html



^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2025-11-01  0:30 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-10-30  7:50 [PATCH net-next v2] Documentation: netconsole: Separate literal code blocks for full and short netcat command name versions Bagas Sanjaya
2025-10-30 18:31 ` Randy Dunlap
2025-11-01  0:30 ` patchwork-bot+netdevbpf

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).