diff options
Diffstat (limited to 'rprt-engine/src/state.rs')
| -rw-r--r-- | rprt-engine/src/state.rs | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/rprt-engine/src/state.rs b/rprt-engine/src/state.rs index 68283d0..80b5e86 100644 --- a/rprt-engine/src/state.rs +++ b/rprt-engine/src/state.rs @@ -1,5 +1,7 @@ -use crate::buffer::{Buffer, BufferID}; -use crate::selection::Selection; +use crate::{ + buffer::{Buffer, BufferID}, + selection::Selection, +}; use std::collections::{HashMap, HashSet}; use std::path::PathBuf; @@ -365,4 +367,4 @@ impl EditorState { } } -pub type EvaluationResult = (Selection, Vec<StateChange>); +pub type StateResult = (Selection, Vec<StateChange>); |
