summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Tokarev <mjt@tls.msk.ru>2022-10-18 11:24:45 +0300
committerAlejandro Colomar <alx@kernel.org>2022-10-18 12:25:04 +0200
commit12f3af8e290a2d59679c3dfe865d0b3e7bffa5ed (patch)
treea016a422962c31f261d95706ae5033390f4608ff
parent4bcd68c90380082490d7aee9ff36f56bb1853b0e (diff)
system_data_types.7: fix typo in regmatch_t description
The description of rm_eo in regmatch_t structure has a typo which makes it difficult to understand. Fix this. Reported-By: Nicolás A. Ortega Froysa <nicolas@ortegas.org> Signed-off-By: Michael Tokarev <mjt@tls.msk.ru> Signed-off-by: Alejandro Colomar <alx@kernel.org>
-rw-r--r--man3type/regex_t.3type2
1 files changed, 1 insertions, 1 deletions
diff --git a/man3type/regex_t.3type b/man3type/regex_t.3type
index 35ee3c6f7..96f4b3ed6 100644
--- a/man3type/regex_t.3type
+++ b/man3type/regex_t.3type
@@ -22,7 +22,7 @@ Standard C library
.B typedef struct {
.BR " regoff_t rm_so;" " /* Byte offset from start of string"
to start of substring */
-.BR " regoff_t rm_eo;" " /* Byte offset from start of string of"
+.BR " regoff_t rm_eo;" " /* Byte offset from start of string to"
the first character after the end of
substring */
.B } regmatch_t;