summaryrefslogtreecommitdiff
path: root/_posts
diff options
context:
space:
mode:
authorPatrick Spek <p.spek@tyil.nl>2018-10-24 12:17:37 +0200
committerPatrick Spek <p.spek@tyil.nl>2018-10-24 12:17:37 +0200
commit822a2a28f3f42cdc351ffa2d40c823400c44621f (patch)
tree2efe2be81ba11003ddcf50759fb586a51dca17ba /_posts
parent82e2f9e1d729a15f10a44387f5bbce9148ecbd4d (diff)
Reword parameters to arguments
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>