aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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.
#