aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorValentin Gagarin <valentin.gagarin@tweag.io>2022-12-12 14:29:02 +0100
committerValentin Gagarin <valentin.gagarin@tweag.io>2022-12-12 14:29:24 +0100
commit4ed8bb1cb132a6671a51e96abbd8241fbe01d6ef (patch)
treef7b9e1d78735dfbe0d271ed0c977007a95bd6db7
parent9d20a056c82b129ab2584169e692c7f3e324fa29 (diff)
suggestions from review
-rw-r--r--doc/manual/src/architecture/architecture.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/manual/src/architecture/architecture.md b/doc/manual/src/architecture/architecture.md
index 4b0704894..3a7d1d6f5 100644
--- a/doc/manual/src/architecture/architecture.md
+++ b/doc/manual/src/architecture/architecture.md
@@ -15,14 +15,14 @@ Nix consists of [hierarchical layers].
| | commmand line interface |------. |
| '-------------------------' | |
| | | |
-| evaluates | |
+| calls | |
| | manages |
| V | |
| .-------------------------. | |
-| | configuration language | | |
+| | language evaluator | | |
| '-------------------------' | |
| | | |
-| evaluates to | |
+| produces | |
| | V |
| +----------------------------|------------------------------+ |
| | store | | |
@@ -36,7 +36,7 @@ Nix consists of [hierarchical layers].
At the top is the [command line interface](../command-ref/command-ref.md), translating from invocations of Nix executables to interactions with the underlying layers.
-Below that is the [Nix language](../language/index.md), the configuration language for Nix.
+Below that is the evaluator for the [Nix language](../language/index.md), the configuration language for Nix.
Its expressions ultimately evaluate to self-contained *build plans*, used to derive *build results* from referenced *build inputs*.
The command line interface and the Nix language are what users interact with most.