diff options
author | Carlos MartÃn Nieto <carlosmn@github.com> | 2017-11-13 11:44:30 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-13 11:44:30 +0100 |
commit | 15f8d9a232097c63c87d8bb2b959e72bb7c1c798 (patch) | |
tree | bdf9c97d8795fba272b34445fa914ae489e80bb8 /tests | |
parent | fd1492e82783159231d046beb22a20d17029bc61 (diff) | |
parent | 732c0b6ded95779e4879c40d054b29981ba14ea6 (diff) | |
download | libgit2-15f8d9a232097c63c87d8bb2b959e72bb7c1c798.tar.gz |
Merge pull request #4412 from cpoerschke/master-tests-repo-init-tweak
s/Init/Index comment tweak for test_repo_init__init_with_initial_commit
Diffstat (limited to 'tests')
-rw-r--r-- | tests/repo/init.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/repo/init.c b/tests/repo/init.c index 6a455bfa6..0f969eb18 100644 --- a/tests/repo/init.c +++ b/tests/repo/init.c @@ -755,7 +755,7 @@ void test_repo_init__init_with_initial_commit(void) /* Initialize the repository */ cl_git_pass(git_repository_init(&_repo, "committed", 0)); - /* Init will be automatically created when requested for a new repo */ + /* Index will be automatically created when requested for a new repo */ cl_git_pass(git_repository_index(&index, _repo)); /* Create a file so we can commit it |