Commit 2dd88a5fafc5af02abfd9a234a43e58f885f2c30

Edward Thomson 2018-09-18T02:55:31

Merge pull request #4811 from libgit2/cmn/sorting-modes revwalk: refer the sorting modes more to git's options

diff --git a/include/git2/revwalk.h b/include/git2/revwalk.h
index d9376ce..bbc3b2b 100644
--- a/include/git2/revwalk.h
+++ b/include/git2/revwalk.h
@@ -25,15 +25,15 @@ GIT_BEGIN_DECL
  */
 typedef enum {
 	/**
-	 * Sort the output with the same default time-order method from git.
-	 * This is the default sorting for new walkers.
+	 * Sort the output with the same default method from `git`: reverse
+	 * chronological order. This is the default sorting for new walkers.
 	 */
 	GIT_SORT_NONE = 0,
 
 	/**
-	 * Sort the repository contents in topological order (parents before
-	 * children); this sorting mode can be combined with time sorting to
-	 * produce git's "time-order".
+	 * Sort the repository contents in topological order (no parents before
+	 * all of its children are shown); this sorting mode can be combined
+	 * with time sorting to produce `git`'s `--date-order``.
 	 */
 	GIT_SORT_TOPOLOGICAL = 1 << 0,