diff --git a/documentation/dev-manual/dev-manual-common-tasks.xml b/documentation/dev-manual/dev-manual-common-tasks.xml
index cc69d641c5..5a00533f33 100644
--- a/documentation/dev-manual/dev-manual-common-tasks.xml
+++ b/documentation/dev-manual/dev-manual-common-tasks.xml
@@ -2887,7 +2887,7 @@
the build host.
For example, an application linking to a common library needs
access to the library itself and its associated headers.
- The way this access is accomplished is by populating sysroot
+ The way this access is accomplished is by populating a sysroot
with files.
Each recipe has two sysroots in its work directory, one for
target files
@@ -2896,7 +2896,7 @@
(recipe-sysroot-native).
You could find the term "staging" used within the Yocto
- project regarding files populating sysroot (e.g. the
+ project regarding files populating sysroots (e.g. the
STAGING_DIR
variable).
@@ -2930,14 +2930,14 @@
the sysroot.
The following example shows how you could add the
/opt directory to the list of
- directories:
+ directories within a recipe:
SYSROOT_DIRS += "/opt"
- for a more complete description of the
+ For a more complete description of the
do_populate_sysroot
task and its associated functions, see the
staging