Fix typo in PayloadJobGenerator comment (#2926)

This commit is contained in:
Alex Stokes
2023-05-30 18:20:22 -06:00
committed by GitHub
parent 5d7eba6fb2
commit cb44ce0904

View File

@ -59,7 +59,7 @@ pub enum KeepPayloadJobAlive {
pub trait PayloadJobGenerator: Send + Sync { pub trait PayloadJobGenerator: Send + Sync {
/// The type that manages the lifecycle of a payload. /// The type that manages the lifecycle of a payload.
/// ///
/// This type is a Stream that yields better payloads payload. /// This type is a Stream that yields better payloads.
type Job: PayloadJob; type Job: PayloadJob;
/// Creates the initial payload and a new [PayloadJob] that yields better payloads. /// Creates the initial payload and a new [PayloadJob] that yields better payloads.