about summary refs log tree commit diff
path: root/tvix/docs/src/eval/build-references.md
diff options
context:
space:
mode:
Diffstat (limited to 'tvix/docs/src/eval/build-references.md')
-rw-r--r--tvix/docs/src/eval/build-references.md7
1 files changed, 4 insertions, 3 deletions
diff --git a/tvix/docs/src/eval/build-references.md b/tvix/docs/src/eval/build-references.md
index dd53f65d83aa..6c0b88df1839 100644
--- a/tvix/docs/src/eval/build-references.md
+++ b/tvix/docs/src/eval/build-references.md
@@ -120,9 +120,10 @@ passes etc.
 In the past, Tvix did not track string contexts in its evaluator at all, see
 the historical section for more information about that.
 
-Tvix tracks string contexts in every `NixString` structure via a
-`HashSet<BuildReference>` and offers an API to combine the references while
-keeping the exact internal structure of that data private.
+Tvix tracks string contexts in every `NixString` structure and offers an API to
+do operations on the context (inherit/clear/…), as well as iterators over
+(different types of) context elements, while keeping the exact internal
+structure of that data private.
 
 ## Historical attempt: Persistent reference tracking