From f195622e0d3f562612b0e2624d0eeaa669fbd3e4 Mon Sep 17 00:00:00 2001 From: leo Date: Mon, 6 Jan 2025 19:36:09 +0800 Subject: [PATCH] docs: remove repetitive words (#4453) Signed-off-by: RiceChuan --- docs/versioned_docs/version-v0.27/03-clients/03-vue.md | 2 +- .../version-v0.27/04-network/02-introduction.md | 2 +- .../version-v28/02-guide/06-tokenfactory/01-tokenfactory.md | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/versioned_docs/version-v0.27/03-clients/03-vue.md b/docs/versioned_docs/version-v0.27/03-clients/03-vue.md index f6684f023a..e6a6f369ae 100644 --- a/docs/versioned_docs/version-v0.27/03-clients/03-vue.md +++ b/docs/versioned_docs/version-v0.27/03-clients/03-vue.md @@ -136,7 +136,7 @@ properly interact with a Cosmos chain. The address prefix is used to identify the chain that the app is connected to, and must match the prefix used by the chain. -By default, Ignite creates a chain with the the `cosmos` prefix. If you have +By default, Ignite creates a chain with the `cosmos` prefix. If you have created your chain with `ignite scaffold chain ... --adddress-prefix foo` or manually changed the prefix in the source code of the chain, you need to set the prefix in the Vue app. diff --git a/docs/versioned_docs/version-v0.27/04-network/02-introduction.md b/docs/versioned_docs/version-v0.27/04-network/02-introduction.md index dc4209c086..57bbf8825e 100644 --- a/docs/versioned_docs/version-v0.27/04-network/02-introduction.md +++ b/docs/versioned_docs/version-v0.27/04-network/02-introduction.md @@ -17,7 +17,7 @@ anyone can be a coordinator or a validator. ## Launching a chain on Ignite -Launching with the CLI can be as simple as a few short commands with the the CLI using `ignite network` command +Launching with the CLI can be as simple as a few short commands with the CLI using `ignite network` command namespace. > **NOTE:** `ignite n` can also be used as a shortcut for `ignite network`. diff --git a/docs/versioned_docs/version-v28/02-guide/06-tokenfactory/01-tokenfactory.md b/docs/versioned_docs/version-v28/02-guide/06-tokenfactory/01-tokenfactory.md index 046076e761..6bc4028eb4 100644 --- a/docs/versioned_docs/version-v28/02-guide/06-tokenfactory/01-tokenfactory.md +++ b/docs/versioned_docs/version-v28/02-guide/06-tokenfactory/01-tokenfactory.md @@ -279,7 +279,7 @@ func (k msgServer) UpdateDenom(goCtx context.Context, msg *types.MsgUpdateDenom) return nil, sdkerrors.Wrap(sdkerrors.ErrKeyNotFound, "Denom to update not found") } - // Checks if the the msg owner is the same as the current owner + // Checks if the msg owner is the same as the current owner if msg.Owner != valFound.Owner { return nil, sdkerrors.Wrap(sdkerrors.ErrUnauthorized, "incorrect owner") } @@ -418,7 +418,7 @@ func (k msgServer) MintAndSendTokens(goCtx context.Context, msg *types.MsgMintAn return nil, sdkerrors.Wrap(sdkerrors.ErrKeyNotFound, "denom does not exist") } - // Checks if the the msg owner is the same as the current owner + // Checks if the msg owner is the same as the current owner if msg.Owner != valFound.Owner { return nil, sdkerrors.Wrap(sdkerrors.ErrUnauthorized, "incorrect owner") } @@ -488,7 +488,7 @@ func (k msgServer) UpdateOwner(goCtx context.Context, msg *types.MsgUpdateOwner) return nil, sdkerrors.Wrap(sdkerrors.ErrKeyNotFound, "denom does not exist") } - // Checks if the the msg owner is the same as the current owner + // Checks if the msg owner is the same as the current owner if msg.Owner != valFound.Owner { return nil, sdkerrors.Wrap(sdkerrors.ErrUnauthorized, "incorrect owner") }