Reword enumeration/enum

This commit is contained in:
Carol (Nichols || Goulding) 2016-10-13 15:59:19 -04:00
parent e2458a3972
commit 506c524b9b

View File

@ -253,9 +253,10 @@ well as specific versions for sublibraries, such as `io::Result`.
[ioresult]: ../std/io/type.Result.html [ioresult]: ../std/io/type.Result.html
[result]: ../std/result/enum.Result.html [result]: ../std/result/enum.Result.html
The `Result` types are [enums][enums]<!-- ignore -->, or *enumerations*. An The `Result` types are [*enumerations*][enums]<!-- ignore -->, often referred
enumeration is a type that can have a fixed set of values, and those values are to as *enums*. An enumeration is a type that can have a fixed set of values,
called the enums *variants*. Chapter 6 will cover enums in more detail. and those values are called the enums *variants*. Chapter 6 will cover enums
in more detail.
[enums]: ch06-00-enums.html [enums]: ch06-00-enums.html