fix: correct function name in greet example and list count in docs

- Fix example code in functions.markdown to reference `callMe` instead of `greet`
- Update expected list count comment in lists.markdown from 4 to 5 after adding an item
This commit is contained in:
mwilmsm
2019-09-30 14:02:55 +00:00
parent d77ca86126
commit 10a0a70054
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -67,7 +67,7 @@ use `add` to append a single item to the end:
:::wren
hirsute.add("goatee")
System.print(hirsute.count) //> 4
System.print(hirsute.count) //> 5
You can insert a new element at a specific position using `insert`: