From 43d948e7548e92c1da917e0b17309061906862cc Mon Sep 17 00:00:00 2001 From: Himess <95512809+Himess@users.noreply.github.com> Date: Sun, 8 Dec 2024 22:13:19 +0300 Subject: [PATCH] fix: Correct typo in 'infaillible' to 'infallible' (#4951) Corrected the typo "infaillible" to "infallible" across the codebase. This change ensures proper spelling and alignment with standard English usage. There are no functional changes, only textual corrections. ## Describe your changes ## Issue ticket number and link This is a minor textual correction and does not correspond to a specific issue ticket. ## Checklist before requesting a review - [X] I have added guiding text to explain how a reviewer should test these changes. - [X] If this code contains consensus-breaking changes, I have added the "consensus-breaking" label. Otherwise, I declare my belief that there are not consensus-breaking changes, for the following reason: - This change only involves correcting a typo in comments and strings, without modifying the code logic or behavior. Signed-off-by: Himess <95512809+Himess@users.noreply.github.com> --- crates/cnidarium/tests/migration.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/cnidarium/tests/migration.rs b/crates/cnidarium/tests/migration.rs index d2d5d995c8..231493357f 100644 --- a/crates/cnidarium/tests/migration.rs +++ b/crates/cnidarium/tests/migration.rs @@ -106,7 +106,7 @@ async fn test_simple_migration() -> anyhow::Result<()> { .latest_snapshot() .root_hash() .await - .expect("infaillible"); + .expect("infallible"); for (i, (key, value)) in kvs.clone().into_iter().enumerate() { let snapshot = storage.latest_snapshot();