The branch main has been updated by imp:

URL: 
https://cgit.FreeBSD.org/src/commit/?id=2a3d453049ae6da2b0071185827d6b140fbeea62

commit 2a3d453049ae6da2b0071185827d6b140fbeea62
Author:     rilysh <[email protected]>
AuthorDate: 2024-04-10 03:36:10 +0000
Commit:     Warner Losh <[email protected]>
CommitDate: 2024-04-10 03:38:01 +0000

    exit.3: add the comma after an empty space
    
    exit(3) man page shows __cxa_atexit(3,) instead of __cxa_atexit(3), in a
    particular section. It seems the comma gets inside the parenthesis and
    with an extra space, it can be viewed as expected.
    
    Signed-off-by: rilysh <[email protected]>
    Reviewed by: imp
    Pull Request: https://github.com/freebsd/freebsd-src/pull/1006
---
 lib/libc/stdlib/exit.3 | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/libc/stdlib/exit.3 b/lib/libc/stdlib/exit.3
index 4ae3fb70b1de..1ff590bb3ae8 100644
--- a/lib/libc/stdlib/exit.3
+++ b/lib/libc/stdlib/exit.3
@@ -78,7 +78,7 @@ The
 implementation of the
 .Fn _Exit
 function does not call destructors registered with
-.Xr __cxa_atexit 3,
+.Xr __cxa_atexit 3 ,
 does not flush buffers, and does not close streams.
 .Pp
 Both functions make the low-order eight bits of the

Reply via email to