Skip to content

Commit 8e23a18

Browse files
committed
doc: fixlinks
1 parent 787d8a9 commit 8e23a18

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/states.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ use sealed::*;
44
/// A [`Trevm`] that requires a [`Cfg`].
55
///
66
/// Expected continuations include:
7-
/// - [`Trevm::fill_cfg`]
7+
/// - [`EvmNeedsCfg::fill_cfg`]
88
///
99
/// [`Cfg`]: crate::Cfg
1010
pub type EvmNeedsCfg<'a, Ext, Db> = Trevm<'a, Ext, Db, NeedsCfg>;
@@ -38,7 +38,7 @@ pub type EvmNeedsNextBlock<'a, Ext, Db> = Trevm<'a, Ext, Db, NeedsNextBlock>;
3838
///
3939
/// Expected continuations include:
4040
/// - [`EvmNeedsTx::fill_tx`]
41-
/// - [`EvmNeedsTx::execute_tx`]
41+
/// - [`EvmNeedsTx::run_tx`]
4242
/// - [`EvmNeedsTx::finish`]
4343
///
4444
/// [`Tx`]: crate::Tx
@@ -57,8 +57,8 @@ pub type EvmErrored<'a, Ext, Db, C, E = <C as BlockContext<Ext, Db>>::Error> =
5757

5858
/// A [`Trevm`] that is ready to execute a transaction.
5959
///
60-
/// The transaction may be executed with [`Trevm::execute_tx`] or cleared
61-
/// with [`Trevm::clear_tx`]
60+
/// The transaction may be executed with [`EvmReady::run`] or cleared
61+
/// with [`EvmReady::clear_tx`]
6262
pub type EvmReady<'a, Ext, Db, C> = Trevm<'a, Ext, Db, Ready<C>>;
6363

6464
#[allow(dead_code)]

0 commit comments

Comments
 (0)