aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authormatthew <matthewkenigsberg@gmail.com>2019-10-28 18:02:47 -0500
committermatthew <matthewkenigsberg@gmail.com>2019-10-28 18:02:47 -0500
commite0bcacf79fe7c7ae7bcb18e9d85a52a4fd741e45 (patch)
tree4c51388139fb5eec66a817aac04afd40ee605082 /src
parent9cac895406724e0304dff140379783c4d786e855 (diff)
fix typo
Diffstat (limited to 'src')
-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));
}