diff options
author | Andrew Kreimer <algonell@gmail.com> | 2024-09-19 18:34:33 +0000 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2024-09-19 13:46:01 -0700 |
commit | ce42f57af4e4f6fca7d392995e849b0fab3facd6 (patch) | |
tree | 138082f1eb59d3818f383ba24848b268c023194f /rebase.c | |
parent | d9369f78e71ff909e93f532961f357f15e2f89b7 (diff) |
rebase: fix a typo
Fix a typo in comments.
Signed-off-by: Andrew Kreimer <algonell@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'rebase.c')
-rw-r--r-- | rebase.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -11,7 +11,7 @@ * The callers that care if (any) rebase is requested should say * if (REBASE_TRUE <= rebase_parse_value(string)) * - * The callers that want to differenciate an unrecognised value and + * The callers that want to differentiate an unrecognised value and * false can do so by treating _INVALID and _FALSE differently. */ enum rebase_type rebase_parse_value(const char *value) |