summaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2019-12-01 17:48:39 +0200
committerLars Wirzenius <liw@liw.fi>2019-12-01 17:48:39 +0200
commitdcdcf6ecc27fd79ac7a95377c8a7e862ae8e1d3a (patch)
treebd5d2fabaa411de2670218fd2561aae050ba5c4e /src/lib.rs
parent03103d0c25b40ee0aba50dece64a23c2545c7404 (diff)
downloadsubplot-dcdcf6ecc27fd79ac7a95377c8a7e862ae8e1d3a.tar.gz
Refactor: rename Match to MatchedStep for clarity
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 877bb91..d74780c 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -28,8 +28,7 @@ mod parser;
pub use parser::parse_scenario_snippet;
mod matches;
-pub use matches::text;
-pub use matches::unmatched;
-pub use matches::Match;
+pub use matches::{text, unmatched};
+pub use matches::MatchedStep;
pub use matches::PartialStep;
pub use matches::StepSnippet;