From 820b591c1f4cff8471118aee5e5ac294bedae7a6 Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Tue, 22 Apr 2025 14:03:51 -0400 Subject: [PATCH] remove unncessary comment --- Git.hs | 2 -- 1 file changed, 2 deletions(-) diff --git a/Git.hs b/Git.hs index 32d37b1987..3eafcd674b 100644 --- a/Git.hs +++ b/Git.hs @@ -89,8 +89,6 @@ localGitDir :: Repo -> OsPath localGitDir Repo { location = Local { gitdir = d } } = d localGitDir _ = giveup "unknown localGitDir" -{- Some code needs to vary between URL and normal repos, - - or bare and non-bare, these functions help with that. -} repoIsUrl :: Repo -> Bool repoIsUrl Repo { location = Url _ } = True repoIsUrl Repo { location = UnparseableUrl _ } = True