A simple CPU rendered GUI IDE experience.
Diffstat (limited to 'src/git.rs')
-rw-r--r--src/git.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/git.rs b/src/git.rs
index c47cd2b..e0d0628 100644
--- a/src/git.rs
+++ b/src/git.rs
@@ -20,7 +20,7 @@ pub fn diff(
p: &Path,
ws: &Path,
now: &Rope,
-) -> Result<imara_diff::Diff, anyhow::Error> {
+) -> rootcause::Result<imara_diff::Diff> {
let f = String::from_utf8(load(p, ws)?)?;
let now = now.to_string();
let i = InternedInput::new(&*f, &now);