summaryrefslogtreecommitdiffstats
path: root/src/edit.rs
diff options
context:
space:
mode:
authorNora <nora.widdecke@tu-bs.de>2019-02-05 11:44:16 +0100
committerNora <nora.widdecke@tu-bs.de>2019-02-05 11:51:32 +0100
commit0bb5a95dc79814756b47c896da7021c984220a26 (patch)
tree24f7445c6a5c295b66e00c7f137945b2512f75ec /src/edit.rs
parent832a9b4699f6df3ef934fcc5c0c5680c3a97ea22 (diff)
move to Rust Edition 2018
Diffstat (limited to 'src/edit.rs')
-rw-r--r--src/edit.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/edit.rs b/src/edit.rs
index cc763f4..c1e94e7 100644
--- a/src/edit.rs
+++ b/src/edit.rs
@@ -3,9 +3,9 @@ use std::fs;
use std::path::Path;
use std::process::Command;
-use khline::KhLine;
-use KhResult;
-use utils::stdioutils;
+use crate::khline::KhLine;
+use crate::KhResult;
+use crate::utils::stdioutils;
pub fn edit_loop(path: &Path) -> KhResult<()> {
loop {