Change double quotes to italics

This commit is contained in:
Carol (Nichols || Goulding) 2016-09-23 15:30:51 -04:00
parent 1879ce7a6b
commit 9ef3fece67

View File

@ -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