summaryrefslogtreecommitdiff
path: root/_posts
diff options
context:
space:
mode:
Diffstat (limited to '_posts')
-rw-r--r--_posts/2018-10-11-hackerrank-solutions-python3-and-perl6-part-2.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/_posts/2018-10-11-hackerrank-solutions-python3-and-perl6-part-2.html b/_posts/2018-10-11-hackerrank-solutions-python3-and-perl6-part-2.html
index 6bad7cb..7fde5d6 100644
--- a/_posts/2018-10-11-hackerrank-solutions-python3-and-perl6-part-2.html
+++ b/_posts/2018-10-11-hackerrank-solutions-python3-and-perl6-part-2.html
@@ -121,7 +121,7 @@ complaining about invalid syntax, so I assume they're running an older Python 3
than I do.
That said, this is a simple `printf` formatted string, which then accepts a
-tuple of parameters to put into the string. `printf` formatted string are very
+tuple of arguments to put into the string. `printf` formatted string are very
powerful in their possibilities, and it's clear to read.
{% endmarkdown %}
@@ -205,8 +205,8 @@ sub mutate-string ($string, $position, $character) {
{% markdown %}
The Perl 6 variant does the same things as the Python variant. `comb` without
-parameters converts a string to a list of characters, and `join` without
-parameters joins a list together to a string.
+arguments converts a string to a list of characters, and `join` without
+arguments joins a list together to a string.
{% endmarkdown %}
</div>