summaryrefslogtreecommitdiff
path: root/Documentation
diff options
context:
space:
mode:
authorThomas Ackermann <th.acker@arcor.de>2015-03-26 20:29:47 (GMT)
committerJunio C Hamano <gitster@pobox.com>2015-03-28 16:24:55 (GMT)
commit39d5bef5c1ceb82845af50a513660f24c77e3ce0 (patch)
tree23e0ffaeba550ca04f7bb7caea6aa4ef12f73616 /Documentation
parent1f23cfe0ef5b2634a7b911a8b6dc4eff7f78ba5d (diff)
downloadgit-39d5bef5c1ceb82845af50a513660f24c77e3ce0.zip
git-39d5bef5c1ceb82845af50a513660f24c77e3ce0.tar.gz
git-39d5bef5c1ceb82845af50a513660f24c77e3ce0.tar.bz2
api-error-handling doc: typofix
Signed-off-by: Thomas Ackermann <th.acker@arcor.de> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation')
-rw-r--r--Documentation/technical/api-error-handling.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/technical/api-error-handling.txt b/Documentation/technical/api-error-handling.txt
index fc68db1..ceeedd4 100644
--- a/Documentation/technical/api-error-handling.txt
+++ b/Documentation/technical/api-error-handling.txt
@@ -58,7 +58,7 @@ to `die` or `error` as-is. For example:
if (ref_transaction_commit(transaction, &err))
die("%s", err.buf);
-The 'err' parameter will be untouched if no error occured, so multiple
+The 'err' parameter will be untouched if no error occurred, so multiple
function calls can be chained:
t = ref_transaction_begin(&err);