diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2010-03-23T17·30+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2010-03-23T17·30+0000 |
commit | 0910ae95680011915211769577a4219384b695af (patch) | |
tree | 6ac783010c72409723ba137e0086c3f42933a7aa /src/libexpr/parser.hh | |
parent | 90039e0863469da7892830b122ccab017b29e2c8 (diff) |
* Start of an evaluator that uses call-by-need (with thunk updating)
instead of (memoised) call-by-name.
Diffstat (limited to 'src/libexpr/parser.hh')
-rw-r--r-- | src/libexpr/parser.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libexpr/parser.hh b/src/libexpr/parser.hh index 334822b5e0e4..3f430eb32539 100644 --- a/src/libexpr/parser.hh +++ b/src/libexpr/parser.hh @@ -8,7 +8,7 @@ namespace nix { /* Parse a Nix expression from the specified file. If `path' refers - to a directory, the "/default.nix" is appended. */ + to a directory, then "/default.nix" is appended. */ Expr parseExprFromFile(EvalState & state, Path path); /* Parse a Nix expression from the specified string. */ |