@@ -156,7 +156,7 @@ GIT_EXTERN(int) git_rebase_init(
156156 * invocation of `git_rebase_init` or by another client.
157157 *
158158 * @param out Pointer to store the rebase object
159- * @param reop The repository that has a rebase in-progress
159+ * @param repo The repository that has a rebase in-progress
160160 * @return Zero on success; -1 on failure.
161161 */
162162GIT_EXTERN (int ) git_rebase_open (git_rebase * * out , git_repository * repo );
@@ -195,8 +195,8 @@ GIT_EXTERN(git_rebase_operation *) git_rebase_operation_byindex(
195195 * working directory will be updated with the changes. If there are conflicts,
196196 * you will need to address those before committing the changes.
197197 *
198- * @param out Pointer to store the rebase operation that is to be performed next
199- * @param repo The rebase in progress
198+ * @param operation Pointer to store the rebase operation that is to be performed next
199+ * @param rebase The rebase in progress
200200 * @param checkout_opts Options to specify how the patch should be checked out
201201 * @return Zero on success; -1 on failure.
202202 */
@@ -211,7 +211,7 @@ GIT_EXTERN(int) git_rebase_next(
211211 * invocation.
212212 *
213213 * @param id Pointer in which to store the OID of the newly created commit
214- * @param repo The rebase that is in-progress
214+ * @param rebase The rebase that is in-progress
215215 * @param author The author of the updated commit, or NULL to keep the
216216 * author from the original commit
217217 * @param committer The committer of the rebase
@@ -255,7 +255,7 @@ GIT_EXTERN(int) git_rebase_abort(
255255 * @param rebase The rebase that is in-progress
256256 * @param signature The identity that is finishing the rebase (optional)
257257 * @param opts Options to specify how rebase is finished
258- * @param Zero on success; -1 on error
258+ * @return Zero on success; -1 on error
259259 */
260260GIT_EXTERN (int ) git_rebase_finish (
261261 git_rebase * rebase ,
0 commit comments