Merge branch 'jn/doc-api-errors'

* jn/doc-api-errors:
  api-error-handling doc: typofix
This commit is contained in:
Junio C Hamano 2015-03-28 09:26:18 -07:00
commit cf98c423b5

View File

@ -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);