diff options
author | Aspen Smith <root@gws.fyi> | 2024-08-11T01·04-0400 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2024-08-11T16·41+0000 |
commit | 1f5a85740e2066f5fb8b7ab487805da5f7da413a (patch) | |
tree | 56799cf45d21f9b6718bf90fbc52fab238f501a4 /tvix/eval | |
parent | e176e1f11a00f77416aca30ec46b75259ca94e42 (diff) |
chore(tvix/eval): Update module comment for value::string r/8480
This sentence is a little stale; let's just link to NixString directly for the authoritative source of truth. Change-Id: I64e065c4148d29702b09820a0e7724a65fae7c67 Reviewed-on: https://cl.tvl.fyi/c/depot/+/12181 Autosubmit: aspen <root@gws.fyi> Tested-by: BuildkiteCI Reviewed-by: flokli <flokli@flokli.de>
Diffstat (limited to 'tvix/eval')
-rw-r--r-- | tvix/eval/src/value/string.rs | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/tvix/eval/src/value/string.rs b/tvix/eval/src/value/string.rs index 247d23a7c895..3680df3afb2d 100644 --- a/tvix/eval/src/value/string.rs +++ b/tvix/eval/src/value/string.rs @@ -1,8 +1,7 @@ //! This module implements Nix language strings. //! -//! Nix language strings never need to be modified on the language -//! level, allowing us to shave off some memory overhead and only -//! paying the cost when creating new strings. +//! See [`NixString`] for more information about the internals of string values + use bstr::{BStr, BString, ByteSlice, Chars}; use nohash_hasher::BuildNoHashHasher; use rnix::ast; |