From: Thomas Ackermann
Date: Thu, 26 Mar 2015 20:29:47 +0000 (+0100)
Subject: api-error-handling doc: typofix
X-Git-Tag: v2.4.0-rc1~7^2
X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=39d5bef5c1ceb82845af50a513660f24c77e3ce0;p=git
api-error-handling doc: typofix
Signed-off-by: Thomas Ackermann
Signed-off-by: Junio C Hamano
---
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);