From 39d5bef5c1ceb82845af50a513660f24c77e3ce0 Mon Sep 17 00:00:00 2001
From: Thomas Ackermann
Date: Thu, 26 Mar 2015 21:29:47 +0100
Subject: [PATCH] api-error-handling doc: typofix
Signed-off-by: Thomas Ackermann
Signed-off-by: Junio C Hamano
---
Documentation/technical/api-error-handling.txt | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
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);