Fix unfancy quotes

This commit is contained in:
Carol (Nichols || Goulding)
2024-08-13 13:14:39 -04:00
committed by Carol (Nichols || Goulding)
parent edc572723c
commit fa655f207f

View File

@@ -20,7 +20,7 @@ executable. Instead, they define functionality intended to be shared with
multiple projects. For example, the `rand` crate we used in [Chapter
2][rand]<!-- ignore --> provides functionality that generates random numbers.
Most of the time when Rustaceans say “crate”, they mean library crate, and they
use “crate” interchangeably with the general programming concept of a “library".
use “crate” interchangeably with the general programming concept of a “library.
The *crate root* is a source file that the Rust compiler starts from and makes
up the root module of your crate (well explain modules in depth in the