diff options
author | Klaus Aehlig <klaus.aehlig@huawei.com> | 2025-06-23 12:32:35 +0200 |
---|---|---|
committer | Klaus Aehlig <klaus.aehlig@huawei.com> | 2025-06-23 15:09:10 +0200 |
commit | 98a68523356f6b506919c4be545e0dbc2033b4b8 (patch) | |
tree | 00994821091c4724a11b1cfececfff14032504f1 /doc | |
parent | edc62b96d95fd393f5f767eabf70cb55afce67a9 (diff) | |
download | justbuild-98a68523356f6b506919c4be545e0dbc2033b4b8.tar.gz |
Documentation: fix some typos
Diffstat (limited to 'doc')
-rw-r--r-- | doc/concepts/overview.md | 6 | ||||
-rw-r--r-- | doc/tutorial/computed.md | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/doc/concepts/overview.md b/doc/concepts/overview.md index 18552f87..79dc301f 100644 --- a/doc/concepts/overview.md +++ b/doc/concepts/overview.md @@ -21,7 +21,7 @@ actual library file and its public headers) as well as information on how to use the target (linking arguments, transitive header files, etc). For a consumer of a target, the definition of this collection of files as well as the additionally provided information is what defines the -target as a dependency, respectively of where the target is coming from +target as a dependency, irrespectively of where the target is coming from (i.e., targets coinciding here are indistinguishable for other targets). Of course, to actually build a single target from its dependencies, many @@ -78,8 +78,8 @@ Repository data A repository uses a (logical) directory for several purposes: to obtain source files, to read definitions of targets, to read rules, and to read -expressions that can be used by rules. While all those directories can -(and often are) be the same, this does not have to be the case. For each +expressions that can be used by rules. While all those directories can be +(and often are) the same, this does not have to be the case. For each of those purposes, a different logical directory (also called "root") can be used. In this way, one can, e.g., add target definitions to a source tree originally written for a different build tool without diff --git a/doc/tutorial/computed.md b/doc/tutorial/computed.md index f746236d..96e27dbe 100644 --- a/doc/tutorial/computed.md +++ b/doc/tutorial/computed.md @@ -310,7 +310,7 @@ $ touch src/baz/baz.cpp $ echo 'bar' > src/baz/deps ``` -As this affects the target structure with commit those changes. +As this affects the target structure, we commit those changes. ```shell $ git add . && git commit -m 'New library baz' |