diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index babe19c..7c20614 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -62,7 +62,7 @@ jobs: - uses: Swatinem/rust-cache@v2 with: cache-on-failure: true - - run: cargo docs --document-private-items + - run: cargo doc --document-private-items --no-deps env: # Keep in sync with ./book.yml:jobs.build # This should only add `-D warnings` diff --git a/src/lib.rs b/src/lib.rs index bc034b5..217ab43 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -4,7 +4,7 @@ //! //! This currently implements the following EIPs: //! - [EIP-3074](https://eips.ethereum.org/EIPS/eip-3074): `AUTH` and `AUTHCALL` instructions. The -//! implementation is located in the [eip3074] module. The custom instruction context required for +//! implementation is located in the [instructions] module. The custom instruction context required for //! `AUTH` and `AUTHCALL` is located in the [context] module. #![cfg_attr(not(test), warn(unused_crate_dependencies))]