summaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2020-03-30 09:44:38 +0300
committerLars Wirzenius <liw@liw.fi>2020-03-30 09:45:05 +0300
commit487c4a110a33d55c88b49e806a2160204d145a45 (patch)
treef3683f1442500ba34c607b2b046026dfc03b6e66 /src/lib.rs
parent57d8b593424d031a2dc22a400d9239b2c840bde2 (diff)
downloadsubplot-487c4a110a33d55c88b49e806a2160204d145a45.tar.gz
Refactor: rename OurError to SubplotError
On consideration, it's a clearer name. I've been trying to avoid using "subplot" in the identifiers, in case we ever have to rename the project again, but I think this is worth it.
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 edd44af..2f358a0 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -6,8 +6,8 @@
#![deny(missing_docs)]
mod error;
-pub use error::OurError;
pub use error::Result;
+pub use error::SubplotError;
mod graphmarkup;
pub use graphmarkup::{DotMarkup, GraphMarkup, PlantumlMarkup};