diff options
| author | Alejandro Colomar <alx@kernel.org> | 2023-08-29 10:37:38 +0200 |
|---|---|---|
| committer | Alejandro Colomar <alx@kernel.org> | 2023-08-29 10:37:49 +0200 |
| commit | bd3c799ef3c4d6886b5b11972d52cd5a49c89d2c (patch) | |
| tree | b7d9509279f0bc8def4909ebfee7084a74255c86 | |
| parent | 5fe661541c3d6c3282332bc1ee920b65486d3a10 (diff) | |
| download | man-pages-bd3c799ef3c4d6886b5b11972d52cd5a49c89d2c.tar.gz | |
strcpy.3, strncat.3, string_copying.7: tfix
Remove non-breaking space (0xC2A0) that accidentally landed in the
source of some string pages. Replace by a normal space (0x20).
Signed-off-by: Alejandro Colomar <alx@kernel.org>
| -rw-r--r-- | man3/strcpy.3 | 2 | ||||
| -rw-r--r-- | man3/strncat.3 | 2 | ||||
| -rw-r--r-- | man7/string_copying.7 | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/man3/strcpy.3 b/man3/strcpy.3 index 79ce58715e..4f46d939ad 100644 --- a/man3/strcpy.3 +++ b/man3/strcpy.3 @@ -148,7 +148,7 @@ in can be very inefficient. Read about .UR https://www.joelonsoftware.com/\:2001/12/11/\:back\-to\-basics/ -Shlemiel the painter +Shlemiel the painter .UE . .SH EXAMPLES .\" SRC BEGIN (strcpy.c) diff --git a/man3/strncat.3 b/man3/strncat.3 index 2a3b5e3059..03a58710b8 100644 --- a/man3/strncat.3 +++ b/man3/strncat.3 @@ -81,7 +81,7 @@ in This function can be very inefficient. Read about .UR https://www.joelonsoftware.com/\:2001/12/11/\:back\-to\-basics/ -Shlemiel the painter +Shlemiel the painter .UE . .SH EXAMPLES .\" SRC BEGIN (strncat.c) diff --git a/man7/string_copying.7 b/man7/string_copying.7 index 78cb989404..e03c2dda6d 100644 --- a/man7/string_copying.7 +++ b/man7/string_copying.7 @@ -591,7 +591,7 @@ Calling a non-truncating function after a truncating one is necessarily wrong. .SH BUGS All catenation functions share the same performance problem: .UR https://www.joelonsoftware.com/\:2001/12/11/\:back\-to\-basics/ -Shlemiel the painter +Shlemiel the painter .UE . .\" ----- EXAMPLES :: -------------------------------------------------/ .SH EXAMPLES |
