]> git.ipfire.org Git - thirdparty/man-pages.git/commitdiff
system_data_types.7: fix typo in regmatch_t description
authorMichael Tokarev <mjt@tls.msk.ru>
Tue, 18 Oct 2022 08:24:45 +0000 (11:24 +0300)
committerAlejandro Colomar <alx@kernel.org>
Tue, 18 Oct 2022 10:25:04 +0000 (12:25 +0200)
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>
man3type/regex_t.3type

index 35ee3c6f79527abd6e4db51cacbf99a10e4d8312..96f4b3ed65faf6ab20f36f9ec71b63bea44c3aa2 100644 (file)
@@ -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;