From 42e73af832c3b1d29ce7b7a2ab5565fb64e6c19a Mon Sep 17 00:00:00 2001 From: Ben Brook Date: Mon, 7 Mar 2022 19:18:45 +0000 Subject: [PATCH] Improve sentence structure --- src/ch15-01-box.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/ch15-01-box.md b/src/ch15-01-box.md index 394e4eb0d..5eb798c08 100644 --- a/src/ch15-01-box.md +++ b/src/ch15-01-box.md @@ -67,11 +67,11 @@ of values could theoretically continue infinitely, Rust doesn’t 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. -Let’s 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 -we’ll define is straightforward except for the recursion; therefore, the -concepts in the example we’ll work with will be useful any time you get into -more complex situations involving recursive types. +As an example of a recursive type, let’s explore the *cons list*. This is a data +commonly found in functional programming languages. The cons list type we’ll +define is straightforward except for the recursion; therefore, the concepts in +the example we’ll work with will be useful any time you get into more complex +situations involving recursive types. #### More Information About the Cons List