aboutsummaryrefslogtreecommitdiff
path: root/challenge-129
diff options
context:
space:
mode:
authorE7-87-83 <fungcheokyin@gmail.com>2021-09-12 18:23:53 +0800
committerE7-87-83 <fungcheokyin@gmail.com>2021-09-12 18:23:53 +0800
commitcc9dc8c47249a8596fba207ec2c5a321c76ed369 (patch)
treef11073aa53152001e74268b5dcb8ca2501fe6534 /challenge-129
parent35e8a6b42a11ec752c2b9f26a45f9ec33b305487 (diff)
downloadperlweeklychallenge-club-cc9dc8c47249a8596fba207ec2c5a321c76ed369.tar.gz
perlweeklychallenge-club-cc9dc8c47249a8596fba207ec2c5a321c76ed369.tar.bz2
perlweeklychallenge-club-cc9dc8c47249a8596fba207ec2c5a321c76ed369.zip
little modification
Diffstat (limited to 'challenge-129')
-rw-r--r--challenge-129/cheok-yin-fung/perl/ch-2.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/challenge-129/cheok-yin-fung/perl/ch-2.pl b/challenge-129/cheok-yin-fung/perl/ch-2.pl
index f65e805dbd..f3073e6525 100644
--- a/challenge-129/cheok-yin-fung/perl/ch-2.pl
+++ b/challenge-129/cheok-yin-fung/perl/ch-2.pl
@@ -54,7 +54,7 @@ class LinkedList {
method append_element {
- # an O(N) operation, seldem used)
+ # an O(N) operation, seldem used
my $dgt = $_[0];
my $p = $head_node;
while (defined($p->next)) {