Fix ambiguous use

This commit is contained in:
Michael Pfaff 2022-11-09 19:49:45 -05:00
commit 391f7de38d
No known key found for this signature in database
GPG key ID: CF402C4A012AA9D4

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>;