summaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2022-04-26 07:48:22 +0300
committerLars Wirzenius <liw@liw.fi>2022-04-26 08:14:22 +0300
commit3422999e5a4fc6b08637d00cae11f523c747f036 (patch)
tree8940d4eca8c663e72cf051b22b9232eb6a84b056 /src/lib.rs
parent924e05bc3d109340eeee7e06c6badeae12d45c10 (diff)
downloadsubplot-3422999e5a4fc6b08637d00cae11f523c747f036.tar.gz
refactor: use "diagram" instead of "graph"
Change everywhere to use the word "diagram" instead of "graph. Diagram seems like the better word. It's mostly used in comments and documentation, but there was one filename and one trait name that needed changing. I used "rg -iw graph" and "find -iname '*graph*'" to find everywhere that needed changing. Sponsored-by: author
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 4bef83a..d253765 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -21,8 +21,8 @@ pub use error::Warnings;
pub mod resource;
-mod graphmarkup;
-pub use graphmarkup::{DotMarkup, GraphMarkup, MarkupOpts, PikchrMarkup, PlantumlMarkup};
+mod diagrams;
+pub use diagrams::{DiagramMarkup, DotMarkup, MarkupOpts, PikchrMarkup, PlantumlMarkup};
mod datafiles;
pub use datafiles::DataFile;