Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialAdan Huerta
3,209 PointsWhy won't it accept Adobe as the correct answer?
Am I missing something here? Adobe -> Namespace Illustrator -> Controller Canvas -> Class Paint -> Method
1 Answer
Steven Parker
231,236 PointsBecause "Adobe" is only part of the answer.
Going from right to left ( this way) in a fully-qualified method call, you would find the method , then the class, and finally the namespace. All components are separated by periods and only the namespace may contain a period.
There isn't any "controller" part of a fully-qualified method name.
Adan Huerta
3,209 PointsAdan Huerta
3,209 PointsAh, thank you. I answered it correctly after multiple tries and re-reading the question repeatedly. Your explanation really helps!