This is an automated email from the git hooks/post-receive script. guillem pushed a commit to branch main in repository dpkg.
View the commit online: https://git.dpkg.org/cgit/dpkg/dpkg.git/commit/?id=f36fe46cdddeeecfb30b1435a0b29eb7a48f1d8f commit f36fe46cdddeeecfb30b1435a0b29eb7a48f1d8f Author: Guillem Jover <[email protected]> AuthorDate: Mon Feb 20 23:41:10 2023 +0100 Dpkg::Control::HashCore: Fix typo in code comment Changelog: silent --- scripts/Dpkg/Control/HashCore.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/Dpkg/Control/HashCore.pm b/scripts/Dpkg/Control/HashCore.pm index 0be9de2c4..61a1aeedb 100644 --- a/scripts/Dpkg/Control/HashCore.pm +++ b/scripts/Dpkg/Control/HashCore.pm @@ -208,7 +208,7 @@ sub parse { while (<$fh>) { # In the common case there will be just a trailing \n character, # so using chomp here which is very fast will avoid the latter - # s/// doing anything, which gives usa significant speed up. + # s/// doing anything, which gives us a significant speed up. chomp; my $armor = $_; s/\s+$//; -- Dpkg.Org's dpkg

