diff options
author | Guillem Jover <guillem@debian.org> | 2019-05-23 22:04:56 +0200 |
---|---|---|
committer | Guillem Jover <guillem@debian.org> | 2019-06-03 03:24:04 +0200 |
commit | 63b674de77ede42f1e9547ad760f3c83fd051a4e (patch) | |
tree | 685baabf28117e9f3d23248adacd6d942b4933cd /dselect | |
parent | 7ff658e1bf0703ecdea08702c74f6bfd8c1d6eb7 (diff) | |
download | dpkg-63b674de77ede42f1e9547ad760f3c83fd051a4e.tar.gz |
doc: Fix typos
Warned-by: codespell
Diffstat (limited to 'dselect')
-rw-r--r-- | dselect/pkglist.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dselect/pkglist.h b/dselect/pkglist.h index f60a93169..3d46dcfd8 100644 --- a/dselect/pkglist.h +++ b/dselect/pkglist.h @@ -212,7 +212,7 @@ protected: explicit packagelist(keybindings *kb); // nonrecursive packagelist(keybindings *kb, pkginfo **pkgltab); // recursive - void add(pkginfo **arry) { while (*arry) add(*arry++); } + void add(pkginfo **array) { while (*array) add(*array++); } void add(pkginfo*); void add(pkginfo *, pkgwant); void add(pkginfo*, const char *extrainfo, showpriority displayimportance); |