aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Darrah <johntdarrah@gmail.com>2022-11-06 20:18:28 +0000
committerSergio Carlavilla Delgado <carlavilla@FreeBSD.org>2022-11-06 20:19:29 +0000
commitce09ff8d52e2e3d3223812afec871a7e1b218b99 (patch)
treec5d002eec72b689fad48878326a3d9e28df11fa1
parented5513235fd55082f79b674ff2bd73f89a0aaa0d (diff)
downloaddoc-ce09ff8d52e2e3d3223812afec871a7e1b218b99.tar.gz
doc-ce09ff8d52e2e3d3223812afec871a7e1b218b99.zip
Fix typo in Linuxemu handbook chapter
PR: 261814 Reviewed by: pauamma@
-rw-r--r--documentation/content/en/books/handbook/linuxemu/_index.adoc2
1 files changed, 1 insertions, 1 deletions
diff --git a/documentation/content/en/books/handbook/linuxemu/_index.adoc b/documentation/content/en/books/handbook/linuxemu/_index.adoc
index a420ef75e8..6129163821 100644
--- a/documentation/content/en/books/handbook/linuxemu/_index.adoc
+++ b/documentation/content/en/books/handbook/linuxemu/_index.adoc
@@ -325,7 +325,7 @@ The Linux system call vector contains, among other things, a list of `sysent[]`
When a system call is called by the Linux binary, the trap code dereferences the system call function pointer off the `proc` structure, and gets the Linux, not the FreeBSD, system call entry points.
Linux mode dynamically _reroots_ lookups.
-This is, in effect, equivalent to `union` to file system mounts.
+This is, in effect, equivalent to `union` file system mounts.
First, an attempt is made to look up the file in [.filename]#/compat/linux/original-path#.
If that fails, the lookup is done in [.filename]#/original-path#.
This makes sure that binaries that require other binaries can run.