From 144d9dff9d047ff44383f11a7f49d9fc4de9854f Mon Sep 17 00:00:00 2001 From: Andrea Fioraldi Date: Mon, 29 Mar 2021 15:57:58 +0200 Subject: [PATCH] doc --- docs/src/core_concepts/core_concepts.md | 2 ++ docs/src/getting_started/crates.md | 8 ++++---- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/docs/src/core_concepts/core_concepts.md b/docs/src/core_concepts/core_concepts.md index c587b44432..46b3960f44 100644 --- a/docs/src/core_concepts/core_concepts.md +++ b/docs/src/core_concepts/core_concepts.md @@ -1 +1,3 @@ # Core Concepts + + diff --git a/docs/src/getting_started/crates.md b/docs/src/getting_started/crates.md index c6b907532e..1745da0494 100644 --- a/docs/src/getting_started/crates.md +++ b/docs/src/getting_started/crates.md @@ -5,9 +5,9 @@ Each one has its self-contained purpose, and the user may not need to use all of Following the naming convention of the folders in the project's root, they are: -- libafl -- libafl_derive -- libafl_targets -- libafl_cc +- libafl, the main crate that contains all the components needed to build a fuzzer +- libafl_derive, a proc-macro crate paired with the libafl crate +- libafl_targets, a crate that expose, under feature flags, pieces of code to interact with targets +- libafl_cc, a library that provide some utils to wrap compilers and create source level fuzzers.