]> git.proxmox.com Git - libgit2.git/commitdiff
Fix a few checkout -> rebase typos
authorCarlos Martín Nieto <cmn@dwim.me>
Mon, 22 Feb 2016 14:41:01 +0000 (15:41 +0100)
committerCarlos Martín Nieto <cmn@dwim.me>
Mon, 22 Feb 2016 14:41:01 +0000 (15:41 +0100)
CHANGELOG.md
include/git2/rebase.h

index c63f75ece81d9635d1907e09bf06dd24d72203bb..ec5a0d33626cad1712d82694f98aea792aa98676 100644 (file)
@@ -328,8 +328,8 @@ v0.23
 
 * `git_rebase_options` now contains a `git_checkout_options` struct
   that will be used for functions that modify the working directory,
-  namely `git_checkout_init`, `git_checkout_next` and
-  `git_checkout_abort`.  As a result, `git_rebase_open` now also takes
+  namely `git_rebase_init`, `git_rebase_next` and
+  `git_rebase_abort`.  As a result, `git_rebase_open` now also takes
   a `git_rebase_options` and only the `git_rebase_init` and
   `git_rebase_open` functions take a `git_rebase_options`, where they
   will persist the options to subsequent `git_rebase` calls.
index ece8b3664536dd57e3023324ac4f88514c1b45af..9b9065ee46b58f5f2d8a29422ef01f012ad56515 100644 (file)
@@ -64,7 +64,7 @@ typedef struct {
 
        /**
         * Options to control how files are written during `git_rebase_init`,
-        * `git_checkout_next` and `git_checkout_abort`.  Note that a minimum
+        * `git_rebase_next` and `git_rebase_abort`.  Note that a minimum
         * strategy of `GIT_CHECKOUT_SAFE` is defaulted in `init` and `next`,
         * and a minimum strategy of `GIT_CHECKOUT_FORCE` is defaulted in
         * `abort` to match git semantics.