From 3a133652691c07abb1a898a3704e693cb9c40901 Mon Sep 17 00:00:00 2001 From: Remy Suen Date: Sun, 5 Feb 2017 07:12:32 +0900 Subject: [PATCH] Flag checkout_opts in git_reset as optional The check_outs argument can be NULL and should be flagged accordingly in the header file. --- include/git2/reset.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/git2/reset.h b/include/git2/reset.h index 79075291f..bd29c69e4 100644 --- a/include/git2/reset.h +++ b/include/git2/reset.h @@ -53,7 +53,7 @@ typedef enum { * * @param reset_type Kind of reset operation to perform. * - * @param checkout_opts Checkout options to be used for a HARD reset. + * @param checkout_opts Optional checkout options to be used for a HARD reset. * The checkout_strategy field will be overridden (based on reset_type). * This parameter can be used to propagate notify and progress callbacks. *