Fixed some typos in network-functions.pl
Message ID | 1442749777-19839-1-git-send-email-matthias.fischer@ipfire.org |
---|---|
State | Rejected |
Headers |
Return-Path: <development-bounces@lists.ipfire.org> Received: from mail01.ipfire.org (mail01.tremer.info [172.28.1.200]) by septima.ipfire.org (Postfix) with ESMTP id 7A09361E83 for <patchwork@ipfire.org>; Sun, 20 Sep 2015 13:49:47 +0200 (CEST) Received: from hedwig.ipfire.org (localhost [IPv6:::1]) by mail01.ipfire.org (Postfix) with ESMTP id 083B2D1A; Sun, 20 Sep 2015 13:49:47 +0200 (CEST) Received: from Devel.localdomain (p578D1255.dip0.t-ipconnect.de [87.141.18.85]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-SHA256 (128/128 bits)) (No client certificate requested) by mail01.ipfire.org (Postfix) with ESMTPSA id 4642E1F8 for <development@lists.ipfire.org>; Sun, 20 Sep 2015 13:49:42 +0200 (CEST) From: Matthias Fischer <matthias.fischer@ipfire.org> To: development@lists.ipfire.org Subject: [PATCH] Fixed some typos in network-functions.pl Date: Sun, 20 Sep 2015 13:49:37 +0200 Message-Id: <1442749777-19839-1-git-send-email-matthias.fischer@ipfire.org> X-Mailer: git-send-email 2.5.3 X-BeenThere: development@lists.ipfire.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: IPFire development talk <development.lists.ipfire.org> List-Unsubscribe: <http://lists.ipfire.org/mailman/options/development>, <mailto:development-request@lists.ipfire.org?subject=unsubscribe> List-Archive: <http://lists.ipfire.org/pipermail/development/> List-Post: <mailto:development@lists.ipfire.org> List-Help: <mailto:development-request@lists.ipfire.org?subject=help> List-Subscribe: <http://lists.ipfire.org/mailman/listinfo/development>, <mailto:development-request@lists.ipfire.org?subject=subscribe> Errors-To: development-bounces@lists.ipfire.org Sender: "Development" <development-bounces@lists.ipfire.org> |
Message
Matthias Fischer
Sept. 20, 2015, 9:49 p.m. UTC
"recognised" => "recognized"
Signed-off-by: Matthias Fischer <matthias.fischer@ipfire.org>
---
config/cfgroot/network-functions.pl | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
Comments
Hi, this is perfect British English: https://en.wiktionary.org/wiki/recognise I do not see any need to change this to American English, since I am using BE most of the time and it is mixed everywhere any way. Best, -Michael On Sun, 2015-09-20 at 13:49 +0200, Matthias Fischer wrote: > "recognised" => "recognized" > > Signed-off-by: Matthias Fischer <matthias.fischer@ipfire.org> > --- > config/cfgroot/network-functions.pl | 6 +++--- > 1 file changed, 3 insertions(+), 3 deletions(-) > > diff --git a/config/cfgroot/network-functions.pl > b/config/cfgroot/network-functions.pl > index cb4ca3d..c39b6d9 100644 > --- a/config/cfgroot/network-functions.pl > +++ b/config/cfgroot/network-functions.pl > @@ -311,10 +311,10 @@ sub testsuite() { > my $address2 = &bin2ip($address1); > assert($address2 eq "8.8.8.8"); > > - # Check if valid IP addresses are correctly recognised. > + # Check if valid IP addresses are correctly recognized. > foreach my $address ("1.2.3.4", "192.168.180.1", > "127.0.0.1") { > if (!&check_ip_address($address)) { > - print "$address is not correctly recognised > as a valid IP address!\n"; > + print "$address is not correctly recognized > as a valid IP address!\n"; > exit 1; > }; > } > @@ -322,7 +322,7 @@ sub testsuite() { > # Check if invalid IP addresses are correctly found. > foreach my $address ("456.2.3.4", "192.768.180.1", "127.1", > "1", "a.b.c.d", "1.2.3.4.5", "1.2.3.4/12") { > if (&check_ip_address($address)) { > - print "$address is recognised as a valid IP > address!\n"; > + print "$address is recognized as a valid IP > address!\n"; > exit 1; > }; > }
Hi,
On 20.09.2015 13:58, Michael Tremer wrote:
> this is perfect British English:
British. Ok, I give up...goin' back to school... ;-))
Best,
Matthias