Fix documentation typos (#933)

* libafl: Fix documentation typo in Push stage

* libafl: Fix documentation typo in PowerSchedule
This commit is contained in:
Langston Barrett 2022-12-07 00:54:48 -05:00 committed by GitHub
parent abfd834e98
commit 61aa764dc4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -133,7 +133,7 @@ impl SchedulerMetadata {
/// The power schedule to use /// The power schedule to use
#[derive(Serialize, Deserialize, Clone, Copy, Debug, PartialEq, Eq)] #[derive(Serialize, Deserialize, Clone, Copy, Debug, PartialEq, Eq)]
pub enum PowerSchedule { pub enum PowerSchedule {
/// The `explore" power schedule /// The `explore` power schedule
EXPLORE, EXPLORE,
/// The `exploit` power schedule /// The `exploit` power schedule
EXPLOIT, EXPLOIT,

View File

@ -1,7 +1,7 @@
//! While normal stages call the executor over and over again, push stages turn this concept upside down: //! While normal stages call the executor over and over again, push stages turn this concept upside down:
//! A push stage instead returns an iterator that generates a new result for each time it gets called. //! A push stage instead returns an iterator that generates a new result for each time it gets called.
//! With the new testcase, you will have to take care about testcase execution, manually. //! With the new testcase, you will have to take care about testcase execution, manually.
//! The push stage relies on internal muttability of the supplied `Observers`. //! The push stage relies on internal mutability of the supplied `Observers`.
//! //!
/// Mutational stage is the normal fuzzing stage. /// Mutational stage is the normal fuzzing stage.