Diffstat (limited to 'src/walk/walkers/core/bool.rs')
| -rw-r--r-- | src/walk/walkers/core/bool.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/walk/walkers/core/bool.rs b/src/walk/walkers/core/bool.rs index a3f2a93..5e173fa 100644 --- a/src/walk/walkers/core/bool.rs +++ b/src/walk/walkers/core/bool.rs @@ -1,6 +1,6 @@ use crate::{effect::Effect, Walk, WalkerTypes}; -use super::value::{ValueWalker, BorrowWalker}; +use super::value::{BorrowWalker, ValueWalker}; impl<'ctx, M, E: Effect<'ctx>> Walk<'ctx, M, E> for bool { type Walker = ValueWalker<bool>; |