summaryrefslogtreecommitdiff
path: root/src/index.c
diff options
context:
space:
mode:
authorBrendan Forster <brendan@github.com>2014-03-10 14:40:07 +1100
committerBrendan Forster <brendan@github.com>2014-03-10 14:40:07 +1100
commit0782c89ed5043d4707436605afd32bb1d53d0240 (patch)
treef0501a252e439d8be9a0f5c7843f3fb0f6588bb5 /src/index.c
parent6de018bbf1fef075d28f2a0cce5f16595f0c8d94 (diff)
downloadlibgit2-0782c89ed5043d4707436605afd32bb1d53d0240.tar.gz
corrected typo in error message
Diffstat (limited to 'src/index.c')
-rw-r--r--src/index.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/index.c b/src/index.c
index 2de3dfebb..0d7d50668 100644
--- a/src/index.c
+++ b/src/index.c
@@ -532,7 +532,7 @@ int git_index_write(git_index *index)
if ((error = git_filebuf_open(
&file, index->index_file_path, GIT_FILEBUF_HASH_CONTENTS, GIT_INDEX_FILE_MODE)) < 0) {
if (error == GIT_ELOCKED)
- giterr_set(GITERR_INDEX, "The index is locked. This might be due to a concurrrent or crashed process");
+ giterr_set(GITERR_INDEX, "The index is locked. This might be due to a concurrent or crashed process");
return error;
}