mirror of
https://github.com/NixOS/nix.git
synced 2025-11-10 20:46:01 +01:00
Replace ∅ with (absent)
This commit is contained in:
parent
7d2dbbd3aa
commit
039d19159f
2 changed files with 1 additions and 5 deletions
|
|
@ -343,10 +343,6 @@
|
|||
|
||||
See [Nix Archive](store/file-system-object/content-address.html#serial-nix-archive) for details.
|
||||
|
||||
- [`∅`]{#gloss-empty-set}
|
||||
|
||||
The empty set symbol. In the context of profile history, this denotes a package is not present in a particular version of the profile.
|
||||
|
||||
- [package]{#package}
|
||||
|
||||
A software package; files that belong together for a particular purpose, and metadata.
|
||||
|
|
|
|||
|
|
@ -49,7 +49,7 @@ GroupedPaths getClosureInfo(ref<Store> store, const StorePath & toplevel)
|
|||
|
||||
std::string showVersions(const StringSet & versions)
|
||||
{
|
||||
if (versions.empty()) return "∅";
|
||||
if (versions.empty()) return "(absent)";
|
||||
StringSet versions2;
|
||||
for (auto & version : versions)
|
||||
versions2.insert(version.empty() ? "(no version)" : version);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue