Skip to content

Commit 5bf38e1

Browse files
committed
chore(git): merge from master
2 parents 084bca2 + fe6db32 commit 5bf38e1

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

ci/github-actions/benchmark/matrix.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ export function parseSelfBenchmarkCategory(category: SelfBenchmarkCategory) {
3939
}
4040

4141
export const RELEASED_PDU_VERSIONS = [
42-
'0.12.0',
42+
'0.20.0',
4343
] as const
4444

4545
export const ACCEPTABLE_PERFORMANCE_REGRESSION = 1.1 // 10%

src/args/fraction.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ impl TryFrom<f32> for Fraction {
4141
}
4242
}
4343

44-
/// Error that occurs when converting a string into an instance of [`Fraction`].
44+
/// Error that occurs when parsing a string as [`Fraction`].
4545
#[derive(Debug, Display, Clone, PartialEq, Eq, Error)]
4646
pub enum FromStrError {
4747
ParseFloatError(ParseFloatError),

src/args/threads.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ pub enum Threads {
1515
Fixed(usize),
1616
}
1717

18-
/// Error that occurs when converting a string to an instance of [`Threads`].
18+
/// Error that occurs when parsing a string to as [`Threads`].
1919
#[derive(Debug, Display, Clone, PartialEq, Eq, Error)]
2020
#[non_exhaustive]
2121
pub enum FromStrError {

0 commit comments

Comments
 (0)