You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Keep in mind that this space is for specific issues related to the content of this lesson.
If you're reporting on the content of this lesson, it'd be super helpful if you could include a stack trace of any errors that you're seeing.
If you'd like to report a bug about the Learn IDE, the Ask a Question form, opening a file, or the lights not working on Learn, please report a bug directly on https://learn.co. (You can find the bug report form by clicking on your avatar in the upper right, and then selecting "Report A Bug".)
We want to respond as quickly as possible and be as helpful as possible, so please be sure to include steps to reproduce the issue (as best you can remember) and any pertinent details about your environment. (Are you using the Learn IDE? Coding from the ISS?) We'll figure out what's up and get back to you ASAP.
On line 40 of this spec:
expect(my_collect(students) do |language| student.split(" ").first
This creates an unneccessary NameError while testing the code. It should read
expect(my_collect(students) do |student| student.split(" ").first
Thanks,
Brad Watson
The text was updated successfully, but these errors were encountered: