File tree Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -62,19 +62,20 @@ See an [example](https://github.com/coderoad/coderoad-functional-school/blob/mas
6262
6363### ` @hint `
6464
65- * @hint * loads a string which can be used to provide hints for the user. The order of hints is important.
65+ * @hint * loads a string (or array of strings) which can be used to provide hints for the user. The order of hints is important: first in, first out .
6666
6767``` markdown
6868@hint('A hint for the user')
69- ```
69+ @hint(['Hint 1', 'Hint 2'])
7070
71- * @hint * may use code-blocks with syntax highlighting.
71+ *@hint* may use code-blocks with syntax highlighting, but they must be wrapped in quotes .
7272
7373```markdown
74- @hint(`var a = 42;`)
75- @hint(```js
74+ @hint("Use the object `{key: val}`")
75+ @hint("`var a = 42;`")
76+ @hint("```js
7677var a = 42;
77- ```)
78+ ```" )
7879```
7980
8081### ` @action `
You can’t perform that action at this time.
0 commit comments