summaryrefslogtreecommitdiff
path: root/Documentation/technical/api-error-handling.txt
diff options
context:
space:
mode:
authorLibravatar Junio C Hamano <gitster@pobox.com>2015-03-28 09:26:18 -0700
committerLibravatar Junio C Hamano <gitster@pobox.com>2015-03-28 09:26:18 -0700
commitcf98c423b571e4afbd78fda3e65d03ed9bdd34fc (patch)
tree7d37a6a281a04d6da2cd89f4fec0b2cd0f5e14b6 /Documentation/technical/api-error-handling.txt
parentSync with maint (diff)
parentapi-error-handling doc: typofix (diff)
downloadtgif-cf98c423b571e4afbd78fda3e65d03ed9bdd34fc.tar.xz
Merge branch 'jn/doc-api-errors'
* jn/doc-api-errors: api-error-handling doc: typofix
Diffstat (limited to 'Documentation/technical/api-error-handling.txt')
-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 fc68db126e..ceeedd485c 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);