Skip to content

Commit

Permalink
docs: Stragegy -> Strategy in rustdoc for Union
Browse files Browse the repository at this point in the history
Fix a typo in the rustdoc for the proptest::strategy::Union struct.
  • Loading branch information
benjaminedwardwebb committed Aug 11, 2024
1 parent c012218 commit d808833
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion proptest/src/strategy/unions.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ pub type W<T> = (u32, T);
/// coupled with `Arc<T>`. The weight is currently given in `u32`.
pub type WA<T> = (u32, Arc<T>);

/// A `Strategy` which picks from one of several delegate `Stragegy`s.
/// A `Strategy` which picks from one of several delegate `Strategy`s.
///
/// See `Strategy::prop_union()`.
#[derive(Clone, Debug)]
Expand Down

0 comments on commit d808833

Please sign in to comment.