From 95ac76e16319658723a55b763a0ac656c6973d41 Mon Sep 17 00:00:00 2001 From: John Vandenberg Date: Mon, 25 Mar 2024 19:01:58 +0800 Subject: [PATCH] fix typos --- bench/tools/gen_large_yaml/src/main.rs | 2 +- bench/tools/gen_large_yaml/src/nested.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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, }