Commit aebdee8e3d2871ef4606f1feb0f46a82cfca1373

Edward Thomson 2021-08-29T21:49:26

Update include/git2/checkout.h

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
diff --git a/include/git2/checkout.h b/include/git2/checkout.h
index d4c1cfa..e0069b6 100644
--- a/include/git2/checkout.h
+++ b/include/git2/checkout.h
@@ -177,7 +177,10 @@ typedef enum {
 	/** Normally checkout writes the index upon completion; this prevents that. */
 	GIT_CHECKOUT_DONT_WRITE_INDEX = (1u << 23),
 
-	/** Stop checkout after the notifications happend but before the working directory is touched. */
+	/**
+	 * Show what would be done by a checkout.  Stop after sending
+	 * notifications; don't update the working directory or index.
+	 */
 	GIT_CHECKOUT_DRY_RUN = (1u << 24),
 	
 	/**