diff options
author | Thomas Ackermann <th.acker@arcor.de> | 2015-03-26 21:29:47 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2015-03-28 09:24:55 -0700 |
commit | 39d5bef5c1ceb82845af50a513660f24c77e3ce0 (patch) | |
tree | 23e0ffaeba550ca04f7bb7caea6aa4ef12f73616 /Documentation | |
parent | doc: document error handling functions and conventions (diff) | |
download | tgif-39d5bef5c1ceb82845af50a513660f24c77e3ce0.tar.xz |
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.txt | 2 |
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); |