git: a05a924995ae - stable/14 - nvmem.9: Fix multiple typos in the manual page

From: Gordon Bergling <gbe_at_FreeBSD.org>
Date: Wed, 19 Nov 2025 10:18:28 UTC
The branch stable/14 has been updated by gbe:

URL: https://cgit.FreeBSD.org/src/commit/?id=a05a924995ae4bc98db31c2dfd6d96148cd96382

commit a05a924995ae4bc98db31c2dfd6d96148cd96382
Author:     Gordon Bergling <gbe@FreeBSD.org>
AuthorDate: 2025-10-26 15:46:26 +0000
Commit:     Gordon Bergling <gbe@FreeBSD.org>
CommitDate: 2025-11-19 10:18:14 +0000

    nvmem.9: Fix multiple typos in the manual page
    
    - s/sucess/success/
    
    (cherry picked from commit 005603cd3dee7610587f1193f9529eb2a42781d7)
---
 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