From 1bf3d67bb52f38d7902acbdab7be02eb9b6c6a9a Mon Sep 17 00:00:00 2001 From: Brian Donovan <1938+eventualbuddha@users.noreply.github.com> Date: Sat, 7 Sep 2024 09:37:16 -0700 Subject: [PATCH] docs: fix typo --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index aa9d844..635039b 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -158,7 +158,7 @@ impl Display for AllocOrInitError { /// ### Fallible Allocation: The `try_alloc_` Method Prefix /// /// These allocation methods let you recover from out-of-memory (OOM) -/// scenarioes, rather than raising a panic on OOM. +/// scenarios, rather than raising a panic on OOM. /// /// ``` /// use bumpalo::Bump;