The branch stable/13 has been updated by gbe (doc committer): URL: https://cgit.FreeBSD.org/src/commit/?id=9193ee41586b74d831f974d8b0b146ea681fd3c8
commit 9193ee41586b74d831f974d8b0b146ea681fd3c8 Author: Gordon Bergling <[email protected]> AuthorDate: 2022-07-03 13:13:32 +0000 Commit: Gordon Bergling <[email protected]> CommitDate: 2022-09-12 07:30:17 +0000 if_clone: Fix a typo in a source code comment - s/fucntions/functions/ (cherry picked from commit e8b7972cfe3ce645636e9939ec447ea7bc5bca50) --- sys/net/if_clone.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/net/if_clone.h b/sys/net/if_clone.h index ed7d6f4d02d5..6d7cfb20d829 100644 --- a/sys/net/if_clone.h +++ b/sys/net/if_clone.h @@ -59,7 +59,7 @@ struct if_clone * if_clone_simple(const char *, ifcs_create_t, ifcs_destroy_t, u_int); void if_clone_detach(struct if_clone *); -/* Unit (de)allocating fucntions. */ +/* Unit (de)allocating functions. */ int ifc_name2unit(const char *name, int *unit); int ifc_alloc_unit(struct if_clone *, int *); void ifc_free_unit(struct if_clone *, int);
