Skip to content

Commit 6d37e59

Browse files
committed
Fix test
1 parent 565c3d9 commit 6d37e59

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

libafl/src/observers/map.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -354,12 +354,12 @@ pub mod macros {
354354
/// # use core::marker::PhantomData;
355355
/// #
356356
/// # struct MyCustomScheduler<C, O> {
357-
/// # phantom: PhantomData<(O, A)>,
357+
/// # phantom: PhantomData<(C, O)>,
358358
/// # }
359359
/// #
360360
/// impl<C, O> MyCustomScheduler<C, O> where O: MapObserver, C: AsRef<O> + CanTrack {
361-
/// pub fn new(obs: &A) -> Self {
362-
/// require_novelties_tracking!("MyCustomScheduler", A);
361+
/// pub fn new(obs: &C) -> Self {
362+
/// require_novelties_tracking!("MyCustomScheduler", C);
363363
/// todo!("Construct your type")
364364
/// }
365365
/// }

0 commit comments

Comments
 (0)