From b6874436d940db3065d37bb9b7eb6a0e9a1e4186 Mon Sep 17 00:00:00 2001 From: Federico Gimenez Date: Thu, 30 May 2024 18:28:54 +0200 Subject: [PATCH] fix cargo docs --- .github/workflows/lint.yml | 2 +- src/lib.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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))]