diff --git a/README.md b/README.md index 3f0d670..444eb01 100644 --- a/README.md +++ b/README.md @@ -16,6 +16,9 @@ OpenZeppelin Stellar Soroban Contracts is a collection of contracts for the Stel - `docs/`: Documentation - `audits/`: Audit reports +## Docs +We have a [documentation website](https://docs.openzeppelin.com/stellar-contracts/) explaining the high-level concepts of the library. You can find code-specific inline documentation in the source code, or alternatively you can locally generate the documentation using the `cargo doc --no-deps --lib --open` command, which will generate the documentation and open it using your default browser. + ## Setup diff --git a/contracts/token/fungible/src/extensions/capped/storage.rs b/contracts/token/fungible/src/extensions/capped/storage.rs index af24a09..a5d8250 100644 --- a/contracts/token/fungible/src/extensions/capped/storage.rs +++ b/contracts/token/fungible/src/extensions/capped/storage.rs @@ -2,7 +2,7 @@ use soroban_sdk::{panic_with_error, symbol_short, Env, Symbol}; use crate::{FungibleTokenError, StorageKey}; -/// Storage key that maps to [`Cap`] +/// Storage key pub const CAP_KEY: Symbol = symbol_short!("CAP"); /// Set the maximum supply of tokens.