aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuis Mochan <mochan@fis.unam.mx>2021-07-13 23:17:19 -0500
committerLuis Mochan <mochan@fis.unam.mx>2021-07-13 23:17:19 -0500
commit51feed7f6f1ba280658615d36ee2f7ccf77b5000 (patch)
treeb07eafd1a54c3071415719e0d6935cf56a55a097
parent97f02a20b90a89b6e1a257ac93e80144766b31ae (diff)
downloadperlweeklychallenge-club-51feed7f6f1ba280658615d36ee2f7ccf77b5000.tar.gz
perlweeklychallenge-club-51feed7f6f1ba280658615d36ee2f7ccf77b5000.tar.bz2
perlweeklychallenge-club-51feed7f6f1ba280658615d36ee2f7ccf77b5000.zip
Correct typo
-rwxr-xr-xchallenge-121/wlmb/perl/ch-2-helper.pl4
-rwxr-xr-xchallenge-121/wlmb/perl/ch-2.pl4
-rwxr-xr-xchallenge-121/wlmb/perl/ch-2a.pl4
-rwxr-xr-xchallenge-121/wlmb/perl/ch-2b.pl4
4 files changed, 8 insertions, 8 deletions
diff --git a/challenge-121/wlmb/perl/ch-2-helper.pl b/challenge-121/wlmb/perl/ch-2-helper.pl
index 699d053b81..167f7d350a 100755
--- a/challenge-121/wlmb/perl/ch-2-helper.pl
+++ b/challenge-121/wlmb/perl/ch-2-helper.pl
@@ -1,8 +1,8 @@
#!/usr/bin/env perl
# Perl weekly challenge 121
-# Task 2: The travelling salesman. Auxiliary program
+# Task 2: The traveling salesman. Auxiliary program
#
-# See https://wlmb.github.io/2021/07/12/PWC121/#task-2-the-travelling-salesman
+# See https://wlmb.github.io/2021/07/12/PWC121/#task-2-the-traveling-salesman
use strict;
use warnings;
use v5.12;
diff --git a/challenge-121/wlmb/perl/ch-2.pl b/challenge-121/wlmb/perl/ch-2.pl
index 625227ef9d..9cfa4714d3 100755
--- a/challenge-121/wlmb/perl/ch-2.pl
+++ b/challenge-121/wlmb/perl/ch-2.pl
@@ -1,8 +1,8 @@
#!/usr/bin/env perl
# Perl weekly challenge 121
-# Task 2: The travelling salesman
+# Task 2: The traveling salesman
#
-# See https://wlmb.github.io/2021/07/12/PWC121/#task-2-the-travelling-salesman
+# See https://wlmb.github.io/2021/07/12/PWC121/#task-2-the-traveling-salesman
use strict;
use warnings;
use v5.12;
diff --git a/challenge-121/wlmb/perl/ch-2a.pl b/challenge-121/wlmb/perl/ch-2a.pl
index 26013d3c32..3b083e341b 100755
--- a/challenge-121/wlmb/perl/ch-2a.pl
+++ b/challenge-121/wlmb/perl/ch-2a.pl
@@ -1,8 +1,8 @@
#!/usr/bin/env perl
# Perl weekly challenge 121
-# Task 2: The travelling salesman. Simulated Annealing
+# Task 2: The traveling salesman. Simulated Annealing
#
-# See https://wlmb.github.io/2021/07/12/PWC121/#task-2-the-travelling-salesman
+# See https://wlmb.github.io/2021/07/12/PWC121/#task-2-the-traveling-salesman
use strict;
use warnings;
use v5.12;
diff --git a/challenge-121/wlmb/perl/ch-2b.pl b/challenge-121/wlmb/perl/ch-2b.pl
index caa3647fcc..dccc072066 100755
--- a/challenge-121/wlmb/perl/ch-2b.pl
+++ b/challenge-121/wlmb/perl/ch-2b.pl
@@ -1,8 +1,8 @@
#!/usr/bin/env perl
# Perl weekly challenge 121
-# Task 2: The travelling salesman. Simulated Annealing. Obeying triangle inequality.
+# Task 2: The traveling salesman. Simulated Annealing. Obeying triangle inequality.
#
-# See https://wlmb.github.io/2021/07/12/PWC121/#task-2-the-travelling-salesman
+# See https://wlmb.github.io/2021/07/12/PWC121/#task-2-the-traveling-salesman
use strict;
use warnings;
use v5.12;