The instructions for 13_classes_iterating_sorting.rb lead the student to try to create the User class independently of the Blog class. I've amended the wording at the top to hopefully not lead learners down this path.
Secondly I ammended line:26
which originally showed.
lissa.blogs #=> [blog1]
following the steps above it this is not what this will look like. blog1 is here representing a blog object but I feel this misleads learners into thinking this is a variable of some sort rather than an instance of the blog class.
I also spelled out that this was happening later on line 40 as again
lissa.blogs #=> [blog1, blog4, blog2, blog3] was a bit confusing for me and other learners.
I hope this makes sense. Please feel free to reach out to me if you would like any clarification.
Hi,
The instructions for 13_classes_iterating_sorting.rb lead the student to try to create the User class independently of the Blog class. I've amended the wording at the top to hopefully not lead learners down this path.
Secondly I ammended line:26 which originally showed.
lissa.blogs #=> [blog1]
following the steps above it this is not what this will look like. blog1 is here representing a blog object but I feel this misleads learners into thinking this is a variable of some sort rather than an instance of the blog class.
I also spelled out that this was happening later on line 40 as again lissa.blogs #=> [blog1, blog4, blog2, blog3] was a bit confusing for me and other learners.
I hope this makes sense. Please feel free to reach out to me if you would like any clarification.
Thanks,
Kevin