Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove redundant explicit link target in documentation #88

Merged
merged 1 commit into from
Jan 22, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions dotenv/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ pub fn from_filename_iter<P: AsRef<Path>>(filename: P) -> Result<Iter<File>> {
Ok(iter)
}

/// Loads environment variables from [`io::Read`](std::io::Read).
/// Loads environment variables from [`io::Read`].
///
/// This is useful for loading environment variables from IPC or the network.
///
Expand Down Expand Up @@ -249,7 +249,7 @@ pub fn from_read<R: io::Read>(reader: R) -> Result<()> {
Ok(())
}

/// Loads environment variables from [`io::Read`](std::io::Read),
/// Loads environment variables from [`io::Read`],
/// overriding existing environment variables.
///
/// This is useful for loading environment variables from IPC or the network.
Expand Down Expand Up @@ -281,7 +281,7 @@ pub fn from_read_override<R: io::Read>(reader: R) -> Result<()> {
Ok(())
}

/// Returns an iterator over environment variables from [`io::Read`](std::io::Read).
/// Returns an iterator over environment variables from [`io::Read`].
///
/// # Examples
///
Expand Down
Loading