ctucx.git: nimgit

[nimlang] nim-wrapper for libgit2

commit a38083061ec162bba4e56b38b0041af843ed5f1c
parent 022d1bcf6cfcb5ddbed09f8e197e3b0367d8b192
Author: Leah (ctucx) <leah@ctu.cx>
Date: Wed, 17 Mar 2021 18:23:42 +0100

commit.nim: fix typo
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/nimgit/commit.nim b/nimgit/commit.nim
@@ -8,7 +8,7 @@ proc lookupCommit* (repo: GitRepository, oid: GitObjectId): GitCommit =
         free(result)
         raise newException(CatchableError, "Commit lookup failed: " & $error.getResultCode)
 
-proc owner* (commt: GitCommit): GitRepository = git_commit_owner(commit)
+proc owner* (commit: GitCommit): GitRepository = git_commit_owner(commit)
 
 proc repo* (commit: GitCommit): GitRepository = commit.owner()