restructre lib
All checks were successful
CI/CD Pipeline / test (push) Successful in 5m29s

This commit is contained in:
2024-02-27 10:33:07 +01:00
parent 1dbd60f711
commit b3b17561a8
5 changed files with 56 additions and 12 deletions

View File

@ -14,7 +14,7 @@
// See the Licence for the specific language governing permissions and
// limitations under the Licence.
//! Deals with getting all paragraphs for a given law text
//! Deals with getting the content of a single paragraph.
mod parser;
@ -101,7 +101,7 @@ impl Parser {
/// # Example Usage
///
/// ```
/// use risp::{config::Config, law::{Law, Heading, Content, Section, HeadingContent}};
/// use risp::{Config, law::{Law, Heading, Content, Section, HeadingContent}};
/// use std::path::Path;
///
/// let (_, mut builder, parser) = Config::load(Path::new("data/configs/abgb.toml")).unwrap();