git: 9b82d758de88 - stable/13 - CMSG_DATA.3: Fix a typo in the EXAMPLES section
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Fri, 28 Oct 2022 08:57:08 UTC
The branch stable/13 has been updated by gbe (doc committer): URL: https://cgit.FreeBSD.org/src/commit/?id=9b82d758de88518c37eaa0e1acabd78a1aa452b2 commit 9b82d758de88518c37eaa0e1acabd78a1aa452b2 Author: Gordon Bergling <gbe@FreeBSD.org> AuthorDate: 2022-10-25 10:49:21 +0000 Commit: Gordon Bergling <gbe@FreeBSD.org> CommitDate: 2022-10-28 08:56:58 +0000 CMSG_DATA.3: Fix a typo in the EXAMPLES section - s/faild/failed/ (cherry picked from commit 31c472b8a6e403e26110c9a379af45fccd6b4177) --- share/man/man3/CMSG_DATA.3 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/share/man/man3/CMSG_DATA.3 b/share/man/man3/CMSG_DATA.3 index 92c5b9736da3..efdff7abae60 100644 --- a/share/man/man3/CMSG_DATA.3 +++ b/share/man/man3/CMSG_DATA.3 @@ -165,7 +165,7 @@ main() close(hellofd[1]); if (read(hellofd[0], buf, HELLOLEN) == -1) - err(EX_IOERR, "faild to receive 'hello'"); + err(EX_IOERR, "failed to receive 'hello'"); printf("parent: received '%s'\\n", buf); break; }