diff options
author | Thomas Niederberger <thomas@niederberger.ch> | 2019-02-05 07:46:48 +0100 |
---|---|---|
committer | Thomas Niederberger <thomas@niederberger.ch> | 2019-02-05 07:46:48 +0100 |
commit | 0b9472c2554aba40d1a873c1a4c6050182a56391 (patch) | |
tree | 30ee2b4ecaba82db1ab1d5cd0a47b995818f5b6d | |
parent | a5ccffbcf4b289f80bf5533cdf94175d78bedec5 (diff) |
Small fix in tutorial
-rw-r--r-- | book/src/tutorial-3.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/book/src/tutorial-3.md b/book/src/tutorial-3.md index b435989a..950411e7 100644 --- a/book/src/tutorial-3.md +++ b/book/src/tutorial-3.md @@ -1,6 +1,6 @@ # Create a `build.rs` File -We create a `build.rs` file in our crate's root. Cargo will pick up on the existence of this file and compile and executed it before the rest of the crate is built. +We create a `build.rs` file in our crate's root. Cargo will pick up on the existence of this file, then compile and execute it before the rest of the crate is built. This can be used to generate code at compile time. And of course in our case, we will be generating Rust FFI bindings to `bzip2` at compile time. The resulting bindings will be written to |