From fdb19fbccb99573cbf23ace6da7a40c104954218 Mon Sep 17 00:00:00 2001 From: Christophe Date: Thu, 7 Nov 2024 14:18:14 -0500 Subject: [PATCH] docs: Fix loaders module docs references --- rig-core/src/loaders/mod.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/rig-core/src/loaders/mod.rs b/rig-core/src/loaders/mod.rs index 55f3ed03..1ef5b22d 100644 --- a/rig-core/src/loaders/mod.rs +++ b/rig-core/src/loaders/mod.rs @@ -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;