EDIT: Please see follow-up, edited for clarity.
Feature Request/Bug:
As a user, I might become confused by the lesson’s example of passing in pointer references (and the Task 3 text " since slice
is passed into a function as pointer"). We should clarify the message that NONE of the tasks require passing in pointers, to avoid user misinterpretation.
EXAMPLE of user misinterpretation:
func AddSecretIngredient(friendList *[]string, myList *[]string) {
In Task 3, I took since slice is passed into a function as pointers
to imply “this is how you should do it”.