diff --git a/src/ch05-00-structs.md b/src/ch05-00-structs.md index ab7ea4f..0eb37df 100644 --- a/src/ch05-00-structs.md +++ b/src/ch05-00-structs.md @@ -1,6 +1,6 @@ # Structs -A `struct`, short for "structure", is a custom data type that lets us name and +A `struct`, short for *structure*, is a custom data type that lets us name and package together multiple related values that make up a meaningful group. If you come from an object-oriented language, a `struct` is like an object's data attributes. In the next section of this chapter, we'll talk about how to define