git: 31c472b8a6e4 - main - CMSG_DATA.3: Fix a typo in the EXAMPLES section
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 25 Oct 2022 10:49:37 UTC
The branch main has been updated by gbe (doc committer): URL: https://cgit.FreeBSD.org/src/commit/?id=31c472b8a6e403e26110c9a379af45fccd6b4177 commit 31c472b8a6e403e26110c9a379af45fccd6b4177 Author: Gordon Bergling <gbe@FreeBSD.org> AuthorDate: 2022-10-25 10:49:21 +0000 Commit: Gordon Bergling <gbe@FreeBSD.org> CommitDate: 2022-10-25 10:49:21 +0000 CMSG_DATA.3: Fix a typo in the EXAMPLES section - s/faild/failed/ MFC after: 3 days --- 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; }