docs: fix typos (#1005)

Co-authored-by: HAOYUatHZ <37070449+HAOYUatHZ@users.noreply.github.com>
Co-authored-by: georgehao <haohongfan@gmail.com>
Co-authored-by: Péter Garamvölgyi <peter@scroll.io>
This commit is contained in:
iwantanode
2023-12-22 10:19:25 +02:00
committed by GitHub
parent 03089eaeee
commit 0cb29c3942
3 changed files with 7 additions and 7 deletions

View File

@@ -33,7 +33,7 @@ Examples of unacceptable behavior include:
* Public or private harassment
* Publishing others' private information, such as a physical or email
address, without their explicit permission
* Other conduct which could reasonably be considered inappropriate in a
* Other conduct that could reasonably be considered inappropriate in a
professional setting
## Enforcement Responsibilities

View File

@@ -13,7 +13,7 @@
## Directory Structure
<pre>
├── <a href="./bridge-history-api/">bridge-history-api</a>: Bridge history service that collects deposit and withdraw events from both L1 and L2 chain and generates withdrawal proofs
├── <a href="./bridge-history-api/">bridge-history-api</a>: Bridge history service that collects deposit and withdraw events from both L1 and L2 chains and generates withdrawal proofs
├── <a href="./common/">common</a>: Common libraries and types
├── <a href="./coordinator/">coordinator</a>: Prover coordinator service that dispatches proving tasks to provers
├── <a href="./database">database</a>: Database client and schema definition

View File

@@ -7,7 +7,7 @@ The bridge-history-api contains three distinct components
### bridgehistoryapi-db-cli
Provide init, show version, rollback, check status services of DB
Provide init, show version, rollback, and check status services of DB
```
cd ./bridge-history-api
make bridgehistoryapi-db-cli
@@ -35,11 +35,11 @@ provides REST APIs. Please refer to the API details below.
## APIs provided by bridgehistoryapi-server
assume `bridgehistoryapi-server` listening on `https://localhost:8080`
can change this port thru modify `config.json`
can change this port by modifying `config.json`
1. `/txs`
```
// @Summary get all txs under given address
// @Summary get all txs under the given address
// @Accept plain
// @Produce plain
// @Param address query string true "wallet address"
@@ -61,7 +61,7 @@ can change this port thru modify `config.json`
3. `/claimable`
```
// @Summary get all claimable txs under given address
// @Summary get all claimable txs under the given address
// @Accept plain
// @Produce plain
// @Param address query string true "wallet address"
@@ -79,4 +79,4 @@ can change this port thru modify `config.json`
// @Param batch_index query string true "batch_index"
// @Success 200
// @Router /api/withdraw_root [get]
```
```