From 5cab4b58bcc3f7ac6a07ab8eca88cdaf98e4a6a4 Mon Sep 17 00:00:00 2001 From: Maxim Evtush <154841002+maximevtush@users.noreply.github.com> Date: Fri, 20 Jun 2025 18:26:30 +0300 Subject: [PATCH] docs: fix typos in module documentation (#24891) --- x/auth/tx/README.md | 4 ++-- x/auth/vesting/README.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/x/auth/tx/README.md b/x/auth/tx/README.md index 378b60e557..78da050350 100644 --- a/x/auth/tx/README.md +++ b/x/auth/tx/README.md @@ -111,12 +111,12 @@ simd query blocks --query 'message.sender=cosmos...' --page 1 --limit 30 #### Transactions -The `x/auth/tx` module provides a convinient CLI command for decoding and encoding transactions. +The `x/auth/tx` module provides a convenient CLI command for decoding and encoding transactions. #### `encode` The `encode` command encodes a transaction created with the `--generate-only` flag or signed with the sign command. -The transaction is seralized it to Protobuf and returned as base64. +The transaction is serialized it to Protobuf and returned as base64. ```bash $ simd tx encode tx.json diff --git a/x/auth/vesting/README.md b/x/auth/vesting/README.md index 892013065a..2f926ad6a9 100644 --- a/x/auth/vesting/README.md +++ b/x/auth/vesting/README.md @@ -35,8 +35,8 @@ This specification defines the vesting account implementation that is used by th For all vesting accounts, the owner of the vesting account is able to delegate and undelegate from validators, however they cannot transfer coins to another account until those coins are vested. This specification allows for four different kinds of vesting: * Delayed vesting, where all coins are vested once `ET` is reached. -* Continous vesting, where coins begin to vest at `ST` and vest linearly with respect to time until `ET` is reached -* Periodic vesting, where coins begin to vest at `ST` and vest periodically according to number of periods and the vesting amount per period. The number of periods, length per period, and amount per period are configurable. A periodic vesting account is distinguished from a continuous vesting account in that coins can be released in staggered tranches. For example, a periodic vesting account could be used for vesting arrangements where coins are relased quarterly, yearly, or over any other function of tokens over time. +* Continuous vesting, where coins begin to vest at `ST` and vest linearly with respect to time until `ET` is reached +* Periodic vesting, where coins begin to vest at `ST` and vest periodically according to number of periods and the vesting amount per period. The number of periods, length per period, and amount per period are configurable. A periodic vesting account is distinguished from a continuous vesting account in that coins can be released in staggered tranches. For example, a periodic vesting account could be used for vesting arrangements where coins are released quarterly, yearly, or over any other function of tokens over time. * Permanent locked vesting, where coins are locked forever. Coins in this account can still be used for delegating and for governance votes even while locked. ## Note