From 67e2fe25af15c82a54512a6e7872c444c102b7e6 Mon Sep 17 00:00:00 2001 From: costcould Date: Wed, 5 Jun 2024 15:53:49 +0800 Subject: [PATCH] chore: fix some comments Signed-off-by: costcould --- .../nameservice/docs/03-demo-of-mitigating-front-running.md | 2 +- tutorials/oracle/docs/02-implementing-vote-extensions.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tutorials/nameservice/docs/03-demo-of-mitigating-front-running.md b/tutorials/nameservice/docs/03-demo-of-mitigating-front-running.md index a8839e87b3..63f37b4aed 100644 --- a/tutorials/nameservice/docs/03-demo-of-mitigating-front-running.md +++ b/tutorials/nameservice/docs/03-demo-of-mitigating-front-running.md @@ -11,7 +11,7 @@ cd scripts configure.sh ``` -If this doesnt work please ensure you have run `make build` in the `tutorials/nameservice/base` directory. +If this doesn't work please ensure you have run `make build` in the `tutorials/nameservice/base` directory. 2. Have alice attempt to reserve `bob.cosmos`: This is a normal transaction that alice wants to execute. The script ``./scripts/reserve.sh "bob.cosmos"` is used to send this transaction. diff --git a/tutorials/oracle/docs/02-implementing-vote-extensions.md b/tutorials/oracle/docs/02-implementing-vote-extensions.md index 52fa102121..aa610b5d32 100644 --- a/tutorials/oracle/docs/02-implementing-vote-extensions.md +++ b/tutorials/oracle/docs/02-implementing-vote-extensions.md @@ -104,7 +104,7 @@ type StakeWeightedPrices struct { } ``` -Now we create the `PrepareProposalHandler`. In this step we’ll first check if the vote extensions’ signatures are correct using a helper function called ValidateVoteExtensions from the baseapp pacakge. +Now we create the `PrepareProposalHandler`. In this step we’ll first check if the vote extensions’ signatures are correct using a helper function called ValidateVoteExtensions from the baseapp package. ```go func (h *ProposalHandler) PrepareProposal() sdk.PrepareProposalHandler {