diff --git a/bench/tools/gen_large_yaml/src/main.rs b/bench/tools/gen_large_yaml/src/main.rs index 86423bf..b585c59 100644 --- a/bench/tools/gen_large_yaml/src/main.rs +++ b/bench/tools/gen_large_yaml/src/main.rs @@ -42,7 +42,7 @@ struct Generator { /// The RNG state. /// /// We don't need to be cryptographically secure. [`SmallRng`] also implements the - /// [`SeedableRng`] trait, allowing runs to be predictible. + /// [`SeedableRng`] trait, allowing runs to be predictable. rng: SmallRng, /// The stack of indentations. indents: Vec, diff --git a/bench/tools/gen_large_yaml/src/nested.rs b/bench/tools/gen_large_yaml/src/nested.rs index db93ff9..0f182a9 100644 --- a/bench/tools/gen_large_yaml/src/nested.rs +++ b/bench/tools/gen_large_yaml/src/nested.rs @@ -26,7 +26,7 @@ struct Tree { /// The RNG state. /// /// We don't need to be cryptographically secure. [`SmallRng`] also implements the - /// [`SeedableRng`] trait, allowing runs to be predictible. + /// [`SeedableRng`] trait, allowing runs to be predictable. rng: SmallRng, }