diff options
author | Valentin Gagarin <valentin.gagarin@tweag.io> | 2022-05-26 02:58:25 +0200 |
---|---|---|
committer | Valentin Gagarin <valentin.gagarin@tweag.io> | 2022-08-04 12:37:47 +0200 |
commit | 4adb6602bdf274f1b0471d8a7ab53e80eaff4854 (patch) | |
tree | 72e6c98e6017959d60a5156d3c88262672e40f0d | |
parent | 4eb11d45928a412643aaf2c2ed40aa7c35cd345c (diff) |
clarify first sentence on store objects
-rw-r--r-- | doc/manual/src/architecture/store/store.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/manual/src/architecture/store/store.md b/doc/manual/src/architecture/store/store.md index 99a92bf8e..18d25ca4d 100644 --- a/doc/manual/src/architecture/store/store.md +++ b/doc/manual/src/architecture/store/store.md @@ -2,8 +2,8 @@ A Nix store is a collection of *store objects*. -Store objects can hold arbitrary *data* and *references* to one another. -Nix makes no distinction if they are used as build inputs, build results, or build tasks. +A store object can hold arbitrary *data* and *references* to other store objects. +Nix makes no distinction if store objects are used as build inputs, build results, or build tasks. ```haskell data Store = Set StoreObject |