From 61aa764dc458da7cfecc2ba3797f2927093fd27e Mon Sep 17 00:00:00 2001 From: Langston Barrett Date: Wed, 7 Dec 2022 00:54:48 -0500 Subject: [PATCH] Fix documentation typos (#933) * libafl: Fix documentation typo in Push stage * libafl: Fix documentation typo in PowerSchedule --- libafl/src/schedulers/powersched.rs | 2 +- libafl/src/stages/push/mod.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/libafl/src/schedulers/powersched.rs b/libafl/src/schedulers/powersched.rs index 819ecd92a3..d6f76e3155 100644 --- a/libafl/src/schedulers/powersched.rs +++ b/libafl/src/schedulers/powersched.rs @@ -133,7 +133,7 @@ impl SchedulerMetadata { /// The power schedule to use #[derive(Serialize, Deserialize, Clone, Copy, Debug, PartialEq, Eq)] pub enum PowerSchedule { - /// The `explore" power schedule + /// The `explore` power schedule EXPLORE, /// The `exploit` power schedule EXPLOIT, diff --git a/libafl/src/stages/push/mod.rs b/libafl/src/stages/push/mod.rs index 599a3658ea..71ed01a0b2 100644 --- a/libafl/src/stages/push/mod.rs +++ b/libafl/src/stages/push/mod.rs @@ -1,7 +1,7 @@ //! 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. //! 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.