Skip to content

Commit

Permalink
docs: Fix loaders module docs references
Browse files Browse the repository at this point in the history
  • Loading branch information
cvauclair committed Nov 7, 2024
1 parent 08de65f commit fdb19fb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions rig-core/src/loaders/mod.rs
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
//! This module provides utility structs for loading and preprocessing files.
//!
//! The `FileLoader` struct can be used to define a common interface for loading any type of files from disk,
//! The [FileLoader] struct can be used to define a common interface for loading any type of files from disk,
//! as well as performing minimal preprocessing on the files, such as reading their contents, ignoring errors
//! and keeping track of file paths along with their contents.
//!
//! The `PdfFileLoader` works similarly to the `FileLoader`, but is specifically designed to load PDF
//! The [PdfFileLoader] works similarly to the [FileLoader], but is specifically designed to load PDF
//! files. This loader also provides PDF-specific preprocessing methods for splitting the PDF into pages
//! and keeping track of the page numbers along with their contents.
//!
//! Note: The `PdfFileLoader` requires the `pdf` feature to be enabled in the `Cargo.toml` file.
//! Note: The [PdfFileLoader] requires the `pdf` feature to be enabled in the `Cargo.toml` file.
pub mod file;

Expand Down

0 comments on commit fdb19fb

Please sign in to comment.