1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-11-14 14:32:42 +01:00

Remove superfluous semicolon

Co-authored-by: Cole Helbling <cole.e.helbling@outlook.com>
This commit is contained in:
Eelco Dolstra 2025-06-06 20:03:33 +02:00 committed by GitHub
parent e18b1637dc
commit 74af43ee91
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -305,7 +305,7 @@ struct SubstitutedSourceAccessor : ForwardingSourceAccessor
std::string showPath(const CanonPath & path) override
{
return displayPrefix + path.abs() + displaySuffix;;
return displayPrefix + path.abs() + displaySuffix;
}
};