diff options
author | Carlo Nucera <carlo.nucera@protonmail.com> | 2020-06-02 16:21:18 -0400 |
---|---|---|
committer | Carlo Nucera <carlo.nucera@protonmail.com> | 2020-06-02 16:21:18 -0400 |
commit | 75d2581390e70c9f5820311ff25ae13521ad07e2 (patch) | |
tree | 247df0c373c21fef83643c6fee86e10095b8df93 /src | |
parent | 78f137e931eff3c5133fe0a58f5d469f50959556 (diff) |
Typo
Diffstat (limited to 'src')
-rw-r--r-- | src/libstore/content-address.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstore/content-address.cc b/src/libstore/content-address.cc index 8a8112fd0..718c7ffc3 100644 --- a/src/libstore/content-address.cc +++ b/src/libstore/content-address.cc @@ -51,7 +51,7 @@ ContentAddress parseContentAddress(std::string_view rawCa) { } return TextHash { hash }; } else if (prefix == "fixed") { - // This has to be an inverse to makeFixedOutputCA + // This has to be an inverse of makeFixedOutputCA auto methodAndHash = rawCa.substr(prefixSeparator+1, string::npos); if (methodAndHash.substr(0,2) == "r:") { std::string_view hashRaw = methodAndHash.substr(2,string::npos); |