git: 005603cd3dee - main - nvmem.9: Fix multiple typos in the manual page
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 27 Oct 2025 06:27:52 UTC
The branch main has been updated by gbe:
URL: https://cgit.FreeBSD.org/src/commit/?id=005603cd3dee7610587f1193f9529eb2a42781d7
commit 005603cd3dee7610587f1193f9529eb2a42781d7
Author: Gordon Bergling <gbe@FreeBSD.org>
AuthorDate: 2025-10-26 15:46:26 +0000
Commit: Gordon Bergling <gbe@FreeBSD.org>
CommitDate: 2025-10-27 06:27:27 +0000
nvmem.9: Fix multiple typos in the manual page
- s/sucess/success/
MFC after: 5 days
---
share/man/man9/nvmem.9 | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/share/man/man9/nvmem.9 b/share/man/man9/nvmem.9
index 812cd09a5e35..fa88cbb91854 100644
--- a/share/man/man9/nvmem.9
+++ b/share/man/man9/nvmem.9
@@ -59,19 +59,19 @@ Get the size of the cell base on the reg property on the node.
Return the size or ENOENT if the cell name wasn't found
.It Fn nvmem_read_cell_by_name "phandle_t node" "const char *name" "void *cell" "size_t buflen"
Get the cell content based on the name.
-Return 0 on sucess or ENOENT if the cell doesn't exists, ENXIO if no provider device was found,
+Return 0 on success or ENOENT if the cell doesn't exists, ENXIO if no provider device was found,
EINVAL if the size isn't correct.
.It Fn nvmem_read_cell_by_idx "phandle_t node" "int idx" "void *cell" "size_t buflen"
Get the cell content based on the id.
-Return 0 on sucess or ENOENT if the cell doesn't exists, ENXIO if no provider device was found,
+Return 0 on success or ENOENT if the cell doesn't exists, ENXIO if no provider device was found,
EINVAL if the size isn't correct.
.It Fn nvmem_write_cell_by_name "phandle_t node" "const char *name" "void *cell" "size_t buflen"
Write the cell content based on the name.
-Return 0 on sucess or ENOENT if the cell doesn't exists, ENXIO if no provider device was found,
+Return 0 on success or ENOENT if the cell doesn't exists, ENXIO if no provider device was found,
EINVAL if the size isn't correct.
.It Fn nvmem_write_cell_by_idx "phandle_t node" "int idx" "void *cell" "size_t buflen"
Write the cell content based on the id.
-Return 0 on sucess or ENOENT if the cell doesn't exists, ENXIO if no provider device was found,
+Return 0 on success or ENOENT if the cell doesn't exists, ENXIO if no provider device was found,
EINVAL if the size isn't correct.
.El
.Sh DEVICE METHODS