summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEmilio Cobos Álvarez <emilio@crisal.io>2019-02-05 13:22:53 +0100
committerGitHub <noreply@github.com>2019-02-05 13:22:53 +0100
commit807033601808efb25e08ee6a3a1a8e98da02cd75 (patch)
tree30ee2b4ecaba82db1ab1d5cd0a47b995818f5b6d
parenta5ccffbcf4b289f80bf5533cdf94175d78bedec5 (diff)
parent0b9472c2554aba40d1a873c1a4c6050182a56391 (diff)
Merge pull request #1517 from Niederb/small-tutorial-fix
Small fix in tutorial
-rw-r--r--book/src/tutorial-3.md2
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