aboutsummaryrefslogtreecommitdiff
path: root/builtin-pack-objects.c
diff options
context:
space:
mode:
authorShawn O. Pearce <spearce@spearce.org>2007-10-18 20:42:20 -0400
committerShawn O. Pearce <spearce@spearce.org>2007-10-18 23:34:09 -0400
commit9c60a966f2c3784cdff31aa6ad9f2086df64d5ba (patch)
treef9be92ea5960a21bab5331cea1527f8d9a57e5f2 /builtin-pack-objects.c
parentc85228ed8f31eb739e19cf8abcff84fad44c1258 (diff)
downloadgit-9c60a966f2c3784cdff31aa6ad9f2086df64d5ba.tar.gz
git-9c60a966f2c3784cdff31aa6ad9f2086df64d5ba.tar.xz
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 <spearce@spearce.org>
Diffstat (limited to 'builtin-pack-objects.c')
-rw-r--r--builtin-pack-objects.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin-pack-objects.c b/builtin-pack-objects.c
index 15d375061..21ba977df 100644
--- a/builtin-pack-objects.c
+++ b/builtin-pack-objects.c
@@ -1718,7 +1718,7 @@ static void prepare_pack(int window, int depth)
if (nr_deltas && n > 1) {
unsigned nr_done = 0;
if (progress)
- start_progress(&progress_state, "Deltifying objects",
+ start_progress(&progress_state, "Compressing objects",
nr_deltas);
qsort(delta_list, n, sizeof(*delta_list), type_size_sort);
ll_find_deltas(delta_list, n, window+1, depth, &nr_done);