mirror of
https://github.com/NixOS/nix.git
synced 2025-11-25 19:51:00 +01:00
Rename ε to "(no version)"
This commit is contained in:
parent
44bdb74c62
commit
7d2dbbd3aa
4 changed files with 3 additions and 7 deletions
|
|
@ -52,7 +52,7 @@ std::string showVersions(const StringSet & versions)
|
|||
if (versions.empty()) return "∅";
|
||||
StringSet versions2;
|
||||
for (auto & version : versions)
|
||||
versions2.insert(version.empty() ? "ε" : version);
|
||||
versions2.insert(version.empty() ? "(no version)" : version);
|
||||
return concatStringsSep(", ", versions2);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -36,7 +36,7 @@ No size change is shown if it's below the threshold. If the package
|
|||
does not exist in either the *before* or *after* closures, it is
|
||||
represented using `∅` (empty set) on the appropriate side of the
|
||||
arrow. If a package has an empty version string, the version is
|
||||
rendered as `ε` (epsilon).
|
||||
rendered as `(no version)`.
|
||||
|
||||
There may be multiple versions of a package in each closure. In that
|
||||
case, only the changed versions are shown. Thus,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue