Skip to content

docs: remove consecutive duplicate words #954

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

Open
wants to merge 4 commits 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 README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ Contributing to the docs site is a great way to get involved in the dev communit
- Did I include Guides of the product under *<category_name>/<product_name>/guides* ?
- Did I include Technical Reference of the product under *<category_name>/<product_name>/reference* ?
- Did I give a descriptive name/id to each document? This is important because that shows up in the URL
- Did I open a PR using the the [contributing](./CONTRIBUTING.md) guidelines?
- Did I open a PR using the [contributing](./CONTRIBUTING.md) guidelines?
- Did I [update the search indices](#how-to-update-search-indices-with-algolia) after my change was deployed?

## Checklist example
Expand All @@ -85,7 +85,7 @@ Let's walk through an example by considering the *Permit2* smart contract:
- No, they should be added [here](./docs/contracts/permit2/guides)
- Did I include Technical Reference of the product under *contracts/permit2/reference* ?
- Yes I added them [here](./docs/contracts/permit2/reference)
- Did I open a PR using the the [Contributing](./CONTRIBUTING.md) guidelines?
- Did I open a PR using the [Contributing](./CONTRIBUTING.md) guidelines?
- Yes
- Did I update the search indices after my change was deployed?
- Yes I did using the [guides below](#how-to-update-search-indices-with-algolia)
Expand Down Expand Up @@ -158,4 +158,4 @@ This command generates static content into the `build` directory and can be serv


## Deployment
The application automatically deployed to production using [Vercel](https://vercel.com/uniswap/docs) upon merge into **main**.
The application automatically deployed to production using [Vercel](https://vercel.com/uniswap/docs) upon merge into **main**.
2 changes: 1 addition & 1 deletion docs/api/subgraph/guides/subgraph-example.md
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ swaps(orderBy: timestamp, orderDirection: desc, where:

## Token Data

Input the the token contract address to fetch token data. Any token that exists in at least one Uniswap v3 pool can be queried. The output will aggregate data across all v3 pools that include the token.
Input the token contract address to fetch token data. Any token that exists in at least one Uniswap v3 pool can be queried. The output will aggregate data across all v3 pools that include the token.

### General Token Data

Expand Down
2 changes: 1 addition & 1 deletion docs/contracts/uniswapx/01-overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ To trade using UniswapX, swappers create a new type of order called an Exclusive

<!-- <img src={require('./images/UniswapX_graph.png').default} alt="UniswapX" width="100%%" /> -->

They then sign a message that uses Permit2 to allow the transfer of tokens to complete the trade as long as the the number of tokens sent and received matched what is specified in the decay curve. These Signed Order messages are broadcast publicly and available to be executed by anyone who wants to be a “filler”.
They then sign a message that uses Permit2 to allow the transfer of tokens to complete the trade as long as the number of tokens sent and received matched what is specified in the decay curve. These Signed Order messages are broadcast publicly and available to be executed by anyone who wants to be a “filler”.

## Fillers on UniswapX
UniswapX introduces a new participant in the Uniswap ecosystem, the _Filler_. These agents pickup signed orders from swappers and compete to execute them using any source of liquidity they have access to.
Expand Down
2 changes: 1 addition & 1 deletion docs/sdk/v3/guides/swaps/03-routing.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ The guide will **cover**:
2. Creating a route
3. Swapping using a route

At the end of the guide, we should be able to create a route and and execute a swap between any two currencies tokens using the example's included UI.
At the end of the guide, we should be able to create a route and execute a swap between any two currencies tokens using the example's included UI.

For this guide, the following Uniswap packages are used:

Expand Down