Skip to content

Commit

Permalink
Merge pull request #433 from tgolang/master
Browse files Browse the repository at this point in the history
chore: fix some typos
  • Loading branch information
rexmas authored Mar 17, 2024
2 parents 5b1931a + 923d50f commit 2efefa8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions proptest/src/test_runner/errors.rs
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ pub enum TestCaseError {
/// configured `PROPTEST_CASES`; only `NewCases` shall be counted.
///
/// TODO-v2: Ideally `TestCaseResult = Result<TestCaseOk, TestCaseError>`
/// however this breaks source compability in version 1.x.x because
/// however this breaks source compatibility in version 1.x.x because
/// `TestCaseResult` is public.
#[derive(Debug, Clone)]
pub(crate) enum TestCaseOk {
Expand All @@ -56,7 +56,7 @@ pub type TestCaseResult = Result<(), TestCaseError>;
/// Intended to replace `TestCaseResult` in v2.
///
/// TODO-v2: Ideally `TestCaseResult = Result<TestCaseOk, TestCaseError>`
/// however this breaks source compability in version 1.x.x because
/// however this breaks source compatibility in version 1.x.x because
/// `TestCaseResult` is public.
pub(crate) type TestCaseResultV2 = Result<TestCaseOk, TestCaseError>;

Expand Down

0 comments on commit 2efefa8

Please sign in to comment.