From e0bcacf79fe7c7ae7bcb18e9d85a52a4fd741e45 Mon Sep 17 00:00:00 2001 From: matthew Date: Mon, 28 Oct 2019 18:02:47 -0500 Subject: [PATCH] fix typo --- src/libexpr/flake/flake.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(&resolvedRef.data)) { return doGit(exportGitHub(state.store, refData->owner, refData->repo, resolvedRef.ref, resolvedRef.rev)); }