Re: [PATCH v2] Documentation: admin-guide: Fix bracket
From: Jonathan Corbet
Date: Mon Sep 07 2026 - 12:48:42 EST
Manuel Ebner <manuelebnerli@xxxxxxxxxxx> writes:
> Add missing ')' and remove ';' to improve readability.
>
> Signed-off-by: Manuel Ebner <manuelebnerli@xxxxxxxxxxx>
> Acked-by: Randy Dunlap <rdunlap@xxxxxxxxxxxxx>
> ---
>
> [v2]
> Remove ';' as Randy Suggested
> [v1]
> https://lore.kernel.org/all/20260902152347.708070-2-manuelebnerli@xxxxxxxxxxx/
> ---
> Documentation/admin-guide/sysctl/vm.rst | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/Documentation/admin-guide/sysctl/vm.rst b/Documentation/admin-guide/sysctl/vm.rst
> index 5b318d17a..5f4a056e4 100644
> --- a/Documentation/admin-guide/sysctl/vm.rst
> +++ b/Documentation/admin-guide/sysctl/vm.rst
> @@ -438,7 +438,7 @@ zone[i]'s protection[j] is calculated by following expression::
> = (total sums of managed_pages from zone[i+1] to zone[j] on the node)
> / lowmem_reserve_ratio[i];
> (i = j):
> - (should not be protected. = 0;
> + (should not be protected. = 0)
> (i > j):
> (not necessary, but looks 0)
Applied, thanks.
jon