Skip to content

Commit 2efefa8

Browse files
authored
Merge pull request #433 from tgolang/master
chore: fix some typos
2 parents 5b1931a + 923d50f commit 2efefa8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

proptest/src/test_runner/errors.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ pub enum TestCaseError {
3939
/// configured `PROPTEST_CASES`; only `NewCases` shall be counted.
4040
///
4141
/// TODO-v2: Ideally `TestCaseResult = Result<TestCaseOk, TestCaseError>`
42-
/// however this breaks source compability in version 1.x.x because
42+
/// however this breaks source compatibility in version 1.x.x because
4343
/// `TestCaseResult` is public.
4444
#[derive(Debug, Clone)]
4545
pub(crate) enum TestCaseOk {
@@ -56,7 +56,7 @@ pub type TestCaseResult = Result<(), TestCaseError>;
5656
/// Intended to replace `TestCaseResult` in v2.
5757
///
5858
/// TODO-v2: Ideally `TestCaseResult = Result<TestCaseOk, TestCaseError>`
59-
/// however this breaks source compability in version 1.x.x because
59+
/// however this breaks source compatibility in version 1.x.x because
6060
/// `TestCaseResult` is public.
6161
pub(crate) type TestCaseResultV2 = Result<TestCaseOk, TestCaseError>;
6262

0 commit comments

Comments
 (0)