diff --git a/structs-methods-and-interfaces.md b/structs-methods-and-interfaces.md index 38064390..e57bdd58 100644 --- a/structs-methods-and-interfaces.md +++ b/structs-methods-and-interfaces.md @@ -89,7 +89,7 @@ We could just give the functions more specific names like `RectangleArea`. A nea We can create a simple type using a **struct**. [A struct](https://golang.org/ref/spec#Struct_types) is just a named collection of fields where you can store data. -Declare a struct like this +Declare a struct like this above your Perimeter and Area functions ```go type Rectangle struct {