Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Ricardo Gonzalez
2,286 PointsSo what is it asking me to do besides putting an init method and putting description as a parameter?
What am I missing?
struct Expense {
var description: String
var amount: Double = 0.0
init (description: String) {
}
}
1 Answer

Justin Iezzi
Courses Plus Student 18,014 PointsIt's also telling you that the parameter should be assigned to the stored property description. It says that you will need to write this in the init method. Right now, your init method is empty.
Remember that you can assign parameters within the init to the struct's properties by using .self
.
for example -
self.foo = foo