Skip to content

Commit 9c60a96

Browse files
committed
Change 'Deltifying objects' to 'Compressing objects'
Recently I was referred to the Grammar Police as the git-pack-objects progress message 'Deltifying %u objects' is considered to be not proper English to at least some small but vocal segment of the English speaking population. Techncially we are applying delta compression to these objects at this stage, so the new term is slightly more acceptable to the Grammar Police but is also just as correct. Signed-off-by: Shawn O. Pearce <[email protected]>
1 parent c85228e commit 9c60a96

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

builtin-pack-objects.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1718,7 +1718,7 @@ static void prepare_pack(int window, int depth)
17181718
if (nr_deltas && n > 1) {
17191719
unsigned nr_done = 0;
17201720
if (progress)
1721-
start_progress(&progress_state, "Deltifying objects",
1721+
start_progress(&progress_state, "Compressing objects",
17221722
nr_deltas);
17231723
qsort(delta_list, n, sizeof(*delta_list), type_size_sort);
17241724
ll_find_deltas(delta_list, n, window+1, depth, &nr_done);

0 commit comments

Comments
 (0)