git: 8ee97eb048 - main - Typo fix: dependant -> dependent

From: Benedict Reuschling <bcr_at_FreeBSD.org>
Date: Fri, 29 Dec 2023 12:08:55 UTC
The branch main has been updated by bcr:

URL: https://cgit.FreeBSD.org/doc/commit/?id=8ee97eb0485e7be02e547032ec44e346b470aef6

commit 8ee97eb0485e7be02e547032ec44e346b470aef6
Author:     Benedict Reuschling <bcr@FreeBSD.org>
AuthorDate: 2023-12-29 12:08:06 +0000
Commit:     Benedict Reuschling <bcr@FreeBSD.org>
CommitDate: 2023-12-29 12:08:06 +0000

    Typo fix: dependant -> dependent
---
 documentation/content/en/articles/linux-emulation/_index.adoc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/documentation/content/en/articles/linux-emulation/_index.adoc b/documentation/content/en/articles/linux-emulation/_index.adoc
index 7fefba22e0..daf9c0ff1d 100644
--- a/documentation/content/en/articles/linux-emulation/_index.adoc
+++ b/documentation/content/en/articles/linux-emulation/_index.adoc
@@ -109,7 +109,7 @@ Common UNIX(R) API defines a syscall as a way to issue commands from a user spac
 The most common implementation is either by using an interrupt or specialized instruction (think of `SYSENTER`/`SYSCALL` instructions for ia32).
 Syscalls are defined by a number.
 For example in FreeBSD, the syscall number 85 is the man:swapon[2] syscall and the syscall number 132 is man:mkfifo[2].
-Some syscalls need parameters, which are passed from the user-space to the kernel-space in various ways (implementation dependant).
+Some syscalls need parameters, which are passed from the user-space to the kernel-space in various ways (implementation dependent).
 Syscalls are synchronous.
 
 Another possible way to communicate is by using a _trap_.