From f7ae3f7531ab4afbcd88b190c7c267541dabb032 Mon Sep 17 00:00:00 2001 From: nulltoken Date: Mon, 8 Oct 2012 16:23:15 +0200 Subject: [PATCH] reflog: fix documentation typos --- include/git2/reflog.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/git2/reflog.h b/include/git2/reflog.h index 447915ef8..d48a89725 100644 --- a/include/git2/reflog.h +++ b/include/git2/reflog.h @@ -97,9 +97,9 @@ GIT_EXTERN(const git_reflog_entry *) git_reflog_entry_byindex(git_reflog *reflog /** * Remove an entry from the reflog by its index * - * To ensure there's no gap in the log history, set the `rewrite_previosu_entry` to 1. - * When deleting entry `n`, member old_oid of entry `n-1` (if any) will be updated with - * the value of memeber new_oid of entry `n+1`. + * To ensure there's no gap in the log history, set `rewrite_previous_entry` + * param value to 1. When deleting entry `n`, member old_oid of entry `n-1` + * (if any) will be updated with the value of member new_oid of entry `n+1`. * * @param reflog a previously loaded reflog. *