aboutsummaryrefslogtreecommitdiffhomepage
path: root/docs
diff options
context:
space:
mode:
authorGravatar Shivam7-1 <55046031+Shivam7-1@users.noreply.github.com>2020-06-22 20:35:20 +0530
committerGravatar GitHub <noreply@github.com>2020-06-22 08:05:20 -0700
commiteedf02164ef3de5925811396c2abea6bb9fe2377 (patch)
tree7c1ea4bfc473765b9cbce21e9a2fc44f8b5df4e3 /docs
parente8ffee4077b59e35824a2e97aa214ee95d39ed13 (diff)
Updated rust_lang.md (#4017)
Diffstat (limited to 'docs')
-rw-r--r--docs/getting-started/new-project-guide/rust_lang.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/getting-started/new-project-guide/rust_lang.md b/docs/getting-started/new-project-guide/rust_lang.md
index 51229903..c28dd761 100644
--- a/docs/getting-started/new-project-guide/rust_lang.md
+++ b/docs/getting-started/new-project-guide/rust_lang.md
@@ -32,8 +32,8 @@ quite easy to run the fuzzers locally yourself if you get a failing test case!
First you'll want to follow the [setup instructions for `cargo fuzz`
itself](https://rust-fuzz.github.io/book/). Afterwards your project should have:
-* A top-level `fuzz` directory
-* A `fuzz/Cargo.toml` manifest which pulls in necessary dependencies to fuzz
+* A top-level `fuzz` directory.
+* A `fuzz/Cargo.toml` manifest which pulls in necessary dependencies to fuzz.
* Some `fuzz/fuzz_targets/*.rs` files which are the fuzz targets that will be
compiled and run on OSS-Fuzz.