X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/544ea9c217cad9459d7b60665db787e94b52f93d..37a0020e073555ffe0921ec1356a27610aadcca4:/gallery/gallery.py?ds=sidebyside

diff --git a/gallery/gallery.py b/gallery/gallery.py
index 9758f8f..2a56b4e 100755
--- a/gallery/gallery.py
+++ b/gallery/gallery.py
@@ -138,7 +138,7 @@ def download_and_extract_top_packages(
 
 def git_create_repository(repo: Path) -> None:
     subprocess.run(["git", "init"], cwd=repo)
-    git_add_and_commit(msg="Inital commit", repo=repo)
+    git_add_and_commit(msg="Initial commit", repo=repo)
 
 
 def git_add_and_commit(msg: str, repo: Path) -> None: