summaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2020-03-28 17:45:01 +0200
committerLars Wirzenius <liw@liw.fi>2020-03-28 17:45:01 +0200
commit0d6744157663ba55856ed2f12454561918561c7f (patch)
tree6a8838fde7d7584a04b3d8b7ed38ac97260779a1 /src/lib.rs
parent1736477e2e2ed5b3c63633087f22280eb73e1506 (diff)
downloadsubplot-0d6744157663ba55856ed2f12454561918561c7f.tar.gz
Change: use thiserror to simplify errors.rs
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 64a2aff..edd44af 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -6,7 +6,7 @@
#![deny(missing_docs)]
mod error;
-pub use error::Error;
+pub use error::OurError;
pub use error::Result;
mod graphmarkup;