Просмотр исходного кода

dpkg: Capitalize debug help output table titles

Guillem Jover лет назад: 15
Родитель
Сommit
fcfbce6681
2 измененных файлов с 3 добавлено и 3 удалено
  1. 2 2
      man/dpkg.1
  2. 1 1
      src/main.c

+ 2 - 2
man/dpkg.1

@@ -1,4 +1,4 @@
-.TH dpkg 1 "2010-11-05" "Debian Project" "dpkg suite"
+.TH dpkg 1 "2011-02-05" "Debian Project" "dpkg suite"
 .SH NAME
 dpkg \- package manager for Debian
 .
@@ -339,7 +339,7 @@ values together from the list below (note that these values may change
 in future releases). \fB\-Dh\fP or \fB\-\-debug=help\fP display these
 debugging values.
 
-    number  description
+    Number   Description
          1   Generally helpful progress information
          2   Invocation and status of maintainer scripts
         10   Output for each file processed

+ 1 - 1
src/main.c

@@ -255,7 +255,7 @@ static void setdebug(const struct cmdinfo *cpi, const char *value) {
     printf(_(
 "%s debugging option, --debug=<octal> or -D<octal>:\n"
 "\n"
-" number  ref. in source   description\n"), DPKG);
+" Number  Ref. in source   Description\n"), DPKG);
 
     for (dip = debuginfos; dip->name; dip++)
       printf(" %6o  %-16s %s\n", dip->flag, dip->name, gettext(dip->desc));