Skip to content

Commit

Permalink
SM: fix rustdoc links
Browse files Browse the repository at this point in the history
  • Loading branch information
tzemanovic committed Dec 10, 2024
1 parent 6dfea67 commit 7bc76ac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions proptest-state-machine/src/strategy.rs
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ use proptest::test_runner::TestRunner;
///
/// The reference state machine generation runs before the generated transitions
/// are attempted to be executed against the SUT (the concrete state machine)
/// as defined by [`proptest::state_machine::StateMachineTest`].
/// as defined by [`crate::StateMachineTest`].
pub trait ReferenceStateMachine {
/// The reference state machine's state type. This should contain the minimum
/// required information needed to implement the state machine. It is used
Expand Down Expand Up @@ -91,7 +91,7 @@ pub trait ReferenceStateMachine {
/// A sequential strategy runs the state machine transitions generated from
/// the reference model sequentially in a test over a concrete state, which
/// can be implemented with the help of
/// [`proptest::state_machine::StateMachineTest`] trait.
/// [`crate::StateMachineTest`] trait.
///
/// You typically never need to override this method.
fn sequential_strategy(
Expand Down

0 comments on commit 7bc76ac

Please sign in to comment.