aboutsummaryrefslogtreecommitdiff
path: root/src/libexpr
diff options
context:
space:
mode:
authorEelco Dolstra <edolstra@gmail.com>2019-11-05 11:17:26 +0100
committerGitHub <noreply@github.com>2019-11-05 11:17:26 +0100
commit72748b408801a1d99e8711cf6d94eb4e140d02c1 (patch)
tree1d0e351ae5cad525d83cf150c4efe5a70aee6a18 /src/libexpr
parentb81d9d26f50784ab1884e2cc6bc470d5cba91bc9 (diff)
parente0bcacf79fe7c7ae7bcb18e9d85a52a4fd741e45 (diff)
Merge pull request #3173 from mkenigs/typo
fix typo
Diffstat (limited to 'src/libexpr')
-rw-r--r--src/libexpr/flake/flake.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libexpr/flake/flake.cc b/src/libexpr/flake/flake.cc
index 73ca59452..d96c3c413 100644
--- a/src/libexpr/flake/flake.cc
+++ b/src/libexpr/flake/flake.cc
@@ -168,7 +168,7 @@ static SourceInfo fetchInput(EvalState & state, const FlakeRef & resolvedRef)
return info;
};
- // This only downloads only one revision of the repo, not the entire history.
+ // This only downloads one revision of the repo, not the entire history.
if (auto refData = std::get_if<FlakeRef::IsGitHub>(&resolvedRef.data)) {
return doGit(exportGitHub(state.store, refData->owner, refData->repo, resolvedRef.ref, resolvedRef.rev));
}