mirror of
https://github.com/Steffo99/micronfig.git
synced 2024-11-21 15:44:20 +00:00
Fix broken doc links
This commit is contained in:
parent
6bede04d0e
commit
22d0963714
4 changed files with 5 additions and 5 deletions
|
@ -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;
|
||||
|
|
|
@ -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`.
|
||||
|
|
|
@ -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
|
||||
//!
|
||||
|
|
|
@ -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`.
|
||||
|
|
Loading…
Reference in a new issue