From 6e71fd7c19c9ea54f546cebfd9aeec192070e1a1 Mon Sep 17 00:00:00 2001 From: kevaundray Date: Tue, 28 Oct 2025 01:20:43 +0000 Subject: [PATCH] chore: fix typo (#8292) Co-Authored-By: kevaundray --- consensus/types/src/fork_name.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/consensus/types/src/fork_name.rs b/consensus/types/src/fork_name.rs index 338e2b1e75..1d7bf3795b 100644 --- a/consensus/types/src/fork_name.rs +++ b/consensus/types/src/fork_name.rs @@ -144,7 +144,7 @@ impl ForkName { /// Return the name of the fork immediately prior to the current one. /// - /// If `self` is `ForkName::Base` then `Base` is returned. + /// If `self` is `ForkName::Base` then `None` is returned. pub fn previous_fork(self) -> Option { match self { ForkName::Base => None,