fix(curriculum): clarify instructions for ouput (#41839)

This commit is contained in:
Shaun Hamilton
2021-04-16 19:33:58 +01:00
committed by GitHub
parent 1ba88935b2
commit 4171277dc9

View File

@ -23,7 +23,14 @@ You can call or <dfn>invoke</dfn> this function by using its name followed by pa
# --instructions--
<ol><li>Create a function called <code>reusableFunction</code> which prints <code>Hi World</code> to the dev console.</li><li>Call the function.</li></ol>
<ol>
<li>
Create a function called <code>reusableFunction</code> which prints the string <code>Hi World</code> to the dev console.
</li>
<li>
Call the function.
</li>
</ol>
# --hints--