1
Fork 0
mirror of https://github.com/Steffo99/micronfig.git synced 2024-10-16 14:37:29 +00:00

Fix broken doc links

This commit is contained in:
Steffo 2023-04-29 02:19:07 +02:00
parent 6bede04d0e
commit 22d0963714
Signed by: steffo
GPG key ID: 2A24051445686895
4 changed files with 5 additions and 5 deletions

View file

@ -1,4 +1,4 @@
//! Module defining the general [`value`] high-level function, the general [`get`] low-level function, and its associated [`Source`] type.
//! Module defining the [`get`] low-level function, and its associated [`Source`] type.
use std::ffi::OsString;
use crate::var;

View file

@ -1,4 +1,4 @@
//! Module defining the [`get`] low-level function for environment files, and its associated types.
//! Module defining the [`get`] low-level function for environment files, and its [`Error`] and [`Result`] associated types.
/// Get a configuration value from the file at the path contained in the environment variable with the given `key`, and convert it to the desired `Type`.

View file

@ -79,8 +79,8 @@
//!
//! Finally, if you want to override the accessed sources, you may use the low level API directly, comprised of the following modules:
//!
//! - [`var`] for accessing environment variable
//! - [`file`] for accessing files with the path defined in environment variables
//! - [`micronfig::var`] for accessing environment variable
//! - [`micronfig::file`] for accessing files with the path defined in environment variables
//!
//! ### Example
//!

View file

@ -1,4 +1,4 @@
//! Module defining the [`get`] low-level function for environment variables, and its associated types.
//! Module defining the [`get`] low-level function for environment variables, and its [`Error`] and [`Result`] associated types.
/// Get a configuration value from the environment variable with the given `key`, and convert it to the desired `Type`.