diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2005-01-20T16·01+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2005-01-20T16·01+0000 |
commit | 6a0a2d559336b3a7a165fb0f87f5e70caa9d8d72 (patch) | |
tree | 0ec39aaa3ed200d9d0fa5be37eed0a7f7b2a218e /src/libstore/derivations.cc | |
parent | 6bb5efadeceb8c4666c227a44113709bb47d23cb (diff) |
* Terminology fixes.
Diffstat (limited to 'src/libstore/derivations.cc')
-rw-r--r-- | src/libstore/derivations.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstore/derivations.cc b/src/libstore/derivations.cc index 9008be43981c..2d776fb74859 100644 --- a/src/libstore/derivations.cc +++ b/src/libstore/derivations.cc @@ -22,7 +22,7 @@ Path writeDerivation(const Derivation & drv, const string & name) static void checkPath(const string & s) { if (s.size() == 0 || s[0] != '/') - throw Error(format("bad path `%1%' in store expression") % s); + throw Error(format("bad path `%1%' in derivation") % s); } |