summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEdward Thomson <ethomson@microsoft.com>2015-04-20 17:22:39 -0400
committerEdward Thomson <ethomson@microsoft.com>2015-04-20 17:22:39 -0400
commitaa9bb425a951565663cf15e23e41b00ac46bf1a5 (patch)
treed096e28d3b8ceef0bd3d6d635f56494373819a2f
parent94c988f6d6f4930ee4c120f6ce7932b5e49637be (diff)
downloadlibgit2-aa9bb425a951565663cf15e23e41b00ac46bf1a5.tar.gz
rebase: correct documentation, CHANGELOG
-rw-r--r--CHANGELOG.md2
-rw-r--r--include/git2/rebase.h16
2 files changed, 9 insertions, 9 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index b97360c9e..12c60532c 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -28,7 +28,7 @@ v0.22 + 1
allow for specifying the expression from the user to be put into the
reflog.
-* `git_rebase_commit` now return `GIT_EUNMERGED` when you attempt to
+* `git_rebase_commit` now returns `GIT_EUNMERGED` when you attempt to
commit with unstaged changes.
### API additions
diff --git a/include/git2/rebase.h b/include/git2/rebase.h
index b85f7e2aa..d9aa175c7 100644
--- a/include/git2/rebase.h
+++ b/include/git2/rebase.h
@@ -33,18 +33,18 @@ typedef struct {
* Used by `git_rebase_init`, this will instruct other clients working
* on this rebase that you want a quiet rebase experience, which they
* may choose to provide in an application-specific manner. This has no
- * effect upon libgit2 directly, but is provided for interoperability with
- * other clients.
+ * effect upon libgit2 directly, but is provided for interoperability
+ * between Git tools.
*/
int quiet;
/**
- * Used by `git_rebase_finish`, this is the canonical name of the notes
- * reference used to rewrite notes for rebased commits when finishing the
- * rebase; if NULL, the contents of the coniguration option
- * `notes.rewriteRef` is examined, unless the configuration option
- * `notes.rewrite.rebase` is set to false. If `notes.rewriteRef` is also
- * NULL, notes will not be rewritten.
+ * Used by `git_rebase_finish`, this is the name of the notes reference
+ * used to rewrite notes for rebased commits when finishing the rebase;
+ * if NULL, the contents of the coniguration option `notes.rewriteRef`
+ * is examined, unless the configuration option `notes.rewrite.rebase`
+ * is set to false. If `notes.rewriteRef` is also NULL, notes will
+ * not be rewritten.
*/
const char *rewrite_notes_ref;