fix: typo corrections in docs and UML diagrams (#25107)

Co-authored-by: Alex | Interchain Labs <alex@interchainlabs.io>
This commit is contained in:
CrazyFrog 2025-08-08 18:35:58 +02:00 committed by GitHub
parent ef25036fea
commit 4bf6b4217a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 4 additions and 4 deletions

View File

@ -6,7 +6,7 @@ sidebar_position: 1
The Cosmos SDK contains different types of [tests](https://martinfowler.com/articles/practical-test-pyramid.html).
These tests have different goals and are used at different stages of the development cycle.
We advice, as a general rule, to use tests at all stages of the development cycle.
We advise, as a general rule, to use tests at all stages of the development cycle.
It is advised, as a chain developer, to test your application and modules in a similar way than the SDK.
The rationale behind testing can be found in [ADR-59](https://docs.cosmos.network/main/build/architecture/adr-059-test-scopes).

View File

@ -24,7 +24,7 @@ const config = {
organizationName: "cosmos",
projectName: "cosmos-sdk",
// Even if you don't use internalization, you can use this field to set useful
// Even if you don't use internationalization, you can use this field to set useful
// metadata like html lang. For example, if your site is Chinese, you may want
// to replace "en" with "zh-Hans".
i18n: {

View File

@ -5,7 +5,7 @@ title: Redelegation
msgServer -> keeper : BeginRedelegation(delAddr, valSrcAddr, valDstAddr, sharesAmount)
participant "keeper (staking)" as keeper
keeper -> keeper : get number of sharew
keeper -> keeper : get number of shares
note left: If the delegator has more shares than the total shares in the validator\n(due to rounding errors), then just withdraw the max number of shares.
keeper -> keeper : check the redelegation uses correct denom

View File

@ -28,7 +28,7 @@ group Unbond(delAddr, valAddr, shares)
alt complete unbonding, all shares removed
keeper -> store : remove delegation object
else there are still shares delegated (not a complete undbonding)
else there are still shares delegated (not a complete unbonding)
keeper -> store : update delegation object
keeper -> keeper : AfterDelegationModified hook
end