Fix ambiguous use

This commit is contained in:
Michael Pfaff 2022-11-09 19:49:45 -05:00
parent cbb80c9d3f
commit 391f7de38d
Signed by: michael
GPG Key ID: CF402C4A012AA9D4
1 changed files with 1 additions and 1 deletions

View File

@ -22,6 +22,6 @@ mod termination;
pub use termination::TerminationResult;
mod how;
pub use how::How;
pub use self::how::How;
pub type Result<T, E = How> = std::result::Result<T, E>;