Improve sentence structure

This commit is contained in:
Ben Brook
2022-03-07 19:18:45 +00:00
committed by Carol (Nichols || Goulding)
parent 3e6f616f63
commit 42e73af832

View File

@@ -67,11 +67,11 @@ of values could theoretically continue infinitely, Rust doesnt know how much
space a value of a recursive type needs. However, boxes have a known size, so
by inserting a box in a recursive type definition, you can have recursive types.
Lets explore the *cons list*, which is a data type common in functional
programming languages, as an example of a recursive type. The cons list type
well define is straightforward except for the recursion; therefore, the
concepts in the example well work with will be useful any time you get into
more complex situations involving recursive types.
As an example of a recursive type, lets explore the *cons list*. This is a data
commonly found in functional programming languages. The cons list type well
define is straightforward except for the recursion; therefore, the concepts in
the example well work with will be useful any time you get into more complex
situations involving recursive types.
#### More Information About the Cons List