aboutsummaryrefslogtreecommitdiff
path: root/challenge-018
diff options
context:
space:
mode:
authorJaime <42359730+bracteatus@users.noreply.github.com>2019-07-27 00:24:46 -0600
committerJaime <42359730+bracteatus@users.noreply.github.com>2019-07-27 00:24:46 -0600
commit9fd8af41093e0041df6f69debc6fe7b66ffcc6fb (patch)
treeb3c97a66e978b9c5916ad43627d01b7489485c11 /challenge-018
parentb71b18eb68337ed77faf2a5c6ffa9e569a39b91d (diff)
downloadperlweeklychallenge-club-9fd8af41093e0041df6f69debc6fe7b66ffcc6fb.tar.gz
perlweeklychallenge-club-9fd8af41093e0041df6f69debc6fe7b66ffcc6fb.tar.bz2
perlweeklychallenge-club-9fd8af41093e0041df6f69debc6fe7b66ffcc6fb.zip
Update ch-2.pl
Diffstat (limited to 'challenge-018')
-rw-r--r--challenge-018/jaime/perl5/ch-2.pl3
1 files changed, 1 insertions, 2 deletions
diff --git a/challenge-018/jaime/perl5/ch-2.pl b/challenge-018/jaime/perl5/ch-2.pl
index 6689a671fb..10dce92536 100644
--- a/challenge-018/jaime/perl5/ch-2.pl
+++ b/challenge-018/jaime/perl5/ch-2.pl
@@ -4,8 +4,7 @@
# Write a script to implement Priority Queue. It is like regular queue
# except each element has a priority associated with it. In a priority
# queue, an element with high priority is served before an element with
-# low priority. Please check this wiki page for more informations. It
-# should serve the following operations:
+# low priority. It should serve the following operations:
#
# 1. is_empty: check whether the queue has no elements.
#