docs: fix broken doc links (#1497)
This commit is contained in:
parent
83e2684824
commit
a600acb4f5
|
@ -5,8 +5,8 @@
|
|||
//! `ConfigurableArtifacts` populates a single `Artifact`, the `ConfigurableArtifact`, by default
|
||||
//! with essential entries only, such as `abi`, `bytecode`,..., but may include additional values
|
||||
//! based on its `ExtraOutputValues` that maps to various objects in the solc contract output, see
|
||||
//! also: [`OutputSelection`](crate::artifacts::OutputSelection). In addition to that some output
|
||||
//! values can also be emitted as standalone files.
|
||||
//! also: [`OutputSelection`](crate::artifacts::output_selection::OutputSelection). In addition to
|
||||
//! that some output values can also be emitted as standalone files.
|
||||
|
||||
use crate::{
|
||||
artifacts::{
|
||||
|
|
|
@ -1,4 +1,6 @@
|
|||
#![deny(rustdoc::broken_intra_doc_links)]
|
||||
#![allow(rustdoc::private_intra_doc_links)]
|
||||
|
||||
pub mod artifacts;
|
||||
pub mod sourcemap;
|
||||
|
||||
|
@ -279,7 +281,7 @@ impl<T: ArtifactOutput> Project<T> {
|
|||
}
|
||||
|
||||
/// Convenience function to compile a series of solidity files with the project's settings.
|
||||
/// Same as [`Self::svm_compile()`] but with the given `files` as input.
|
||||
/// Same as [`Self::compile()`] but with the given `files` as input.
|
||||
///
|
||||
/// # Example
|
||||
///
|
||||
|
@ -310,7 +312,7 @@ impl<T: ArtifactOutput> Project<T> {
|
|||
}
|
||||
|
||||
/// Convenience function to compile only (re)compile files that match the provided [FileFilter].
|
||||
/// Same as [`Self::svm_compile()`] but with only with those files as input that match
|
||||
/// Same as [`Self::compile()`] but with only with those files as input that match
|
||||
/// [FileFilter::is_match()].
|
||||
///
|
||||
/// # Example - Only compile Test files
|
||||
|
|
Loading…
Reference in New Issue