Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: remove redundant words in comment #1603

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/community/release-process/smart-contracts.md
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,7 @@ Deploying a new contract release should occur with the following process. On-cha
<li>
On Tuesday: Run the{" "}
<a href="/community/release-process/smart-contracts#release-process">smart contract release script</a>{" "}
in order to to deploy the contracts to Baklava as well as submit a
in order to deploy the contracts to Baklava as well as submit a
governance proposal.
<ul>
<li>
Expand All @@ -370,7 +370,7 @@ Deploying a new contract release should occur with the following process. On-cha
<a href="/community/release-process/smart-contracts#release-process">
smart contract release script
</a>{" "}
in order to to deploy the contracts to Alfajores as well as submit a
in order to deploy the contracts to Alfajores as well as submit a
governance proposal.
</li>
<li>
Expand All @@ -395,7 +395,7 @@ Deploying a new contract release should occur with the following process. On-cha
<a href="https://docs.celo.org/community/release-process/smart-contracts#build-process">
smart contract release script
</a>{" "}
in order to to deploy the contracts to Mainnet as well as submit a
in order to deploy the contracts to Mainnet as well as submit a
governance proposal.
</li>
<li>
Expand Down
2 changes: 1 addition & 1 deletion docs/general/web2-to-web3.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Overview of the anatomy of a dApp and its architecture difference from a web2 ap

## Introduction

_This article assumes you have experience writing front-ends for web apps (called web2 apps here) and want to gain an an understanding of the differences and commonalities when creating front-ends for web3 apps._
_This article assumes you have experience writing front-ends for web apps (called web2 apps here) and want to gain an understanding of the differences and commonalities when creating front-ends for web3 apps._

Web3 dApps expand on the front-end architectural systems of Web2 Applications. Concepts like SinglePageApp, State and UI Management, Data Fetching and Caching serve as the foundation of any Web3 dApp. Compared to Web2 Apps, even more computation is pushed to the client/browser as computing on the blockchain costs literal money while running your own traditional backend between the blockchain and frontend increases centralization and is not used by most web3 dApps.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ export default function ShowcaseFilterToggle(): JSX.Element {
type="checkbox"
id={id}
className="screen-reader-only"
aria-label="Toggle between or and and for the tags you selected"
aria-label="Toggle between or and for the tags you selected"
onChange={toggleOperator}
onKeyDown={(e) => {
if (e.key === "Enter") {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ export default function ShowcaseFilterToggle(): JSX.Element {
type="checkbox"
id={id}
className="screen-reader-only"
aria-label="Toggle between or and and for the tags you selected"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Here and above the double "and" are correct.

aria-label="Toggle between or and for the tags you selected"
onChange={toggleOperator}
onKeyDown={(e) => {
if (e.key === "Enter") {
Expand Down