Skip to content

Commit ca2114d

Browse files
author
Goldyvaiiii
committed
docs: fix typos in markdown documentation
1 parent 72936f8 commit ca2114d

File tree

11 files changed

+103
-103
lines changed

11 files changed

+103
-103
lines changed

COMMITTERS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Apache CouchDB COMMITTERS
33

44
Committers are given a binding vote in certain project decisions, as well as
55
write access to public project infrastructure. Committers are elected to the
6-
project in recognition of their committment to Apache CouchDB. We mean this in
6+
project in recognition of their commitment to Apache CouchDB. We mean this in
77
the sense of being loyal to the project and its interests.
88

99
A full list of committers elected to the project is available at:

extra/nouveau/gradlew.bat

Lines changed: 92 additions & 92 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/couch_replicator/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ A description of each child:
2525
interface is `acquire/1` and `release/1`. The general idea is once a
2626
connection is established, it is kept around for
2727
`replicator.connection_close_interval` milliseconds in case another
28-
replication task wants to re-use it. It is worth pointing out how linking
28+
replication task wants to reuse it. It is worth pointing out how linking
2929
and monitoring is handled: workers are linked to the connection pool when
3030
they are created. If they crash, the connection pool will receive an 'EXIT'
3131
event and clean up after the worker. The connection pool also monitors

src/docs/rfcs/003-fdb-seq-index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ database is relocated to a different FoundationDB cluster. Thus the majority of
4646
the time an Incarnation fits into a single byte, or two bytes if the database
4747
has been moved around a small number of times.
4848

49-
`Sequence`: the combinination of the current `Incarnation` for the database and
49+
`Sequence`: the combination of the current `Incarnation` for the database and
5050
the `Versionstamp` of the transaction. Sequences are monotonically increasing
5151
even when a database is relocated across FoundationDB clusters.
5252

src/docs/rfcs/008-map-indexes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ If we have a design document like the following:
155155
```
156156

157157
Each emit would be a new key/value row in the map index. Each key row cannot exceed 8KB and each value row cannot exceed 64KB.
158-
If a document is emitted as a value, that document is not allowed to exceeed 64KB.
158+
If a document is emitted as a value, that document is not allowed to exceed 64KB.
159159

160160
### Key ordering
161161

src/docs/rfcs/011-opentracing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ Following headers on the response would be supported
134134
## Conventions
135135

136136
The conventions below are based on [conventions from opentracing](https://github.com/opentracing/specification/blob/main/semantic_conventions.md#standard-span-tags-and-log-fields).
137-
All tags are optional since it is just a recomendation from open tracing to hint visualization and filtering tools.
137+
All tags are optional since it is just a recommendation from open tracing to hint visualization and filtering tools.
138138

139139
### Span tags
140140

src/docs/rfcs/012-fdb-reduce.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -905,7 +905,7 @@ const query = async (opts) => {
905905
906906
907907
// smaller queries with the initial kvs added to the skiplist
908-
// this is used to varify the accuracy of the insert and query
908+
// this is used to verify the accuracy of the insert and query
909909
const simpleQueries = async () => {
910910
let result = {};
911911
result = await query({group_level: 0});

src/docs/rfcs/014-pagination.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ to handle.
2222

2323
## Abstract
2424

25-
The main addition is to add new bookmark based pagination scheme to all quiery
25+
The main addition is to add new bookmark based pagination scheme to all query
2626
like endpoints. As a first step we would keep `_all_dbs`, `_dbs_info` and
2727
`_changes` out of scope for the following reasons:
2828
- _all_dbs - the endpoint returns a list instead of object as the rest of the endpoints

src/docs/rfcs/016-fdb-replicator.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,7 @@ updated with terminal states of `failed` and `completed`. Users should use
298298

299299
Advantages:
300300

301-
* Simplicity: re-using `couch_jobs` means having a lot less code to maintain
301+
* Simplicity: reusing `couch_jobs` means having a lot less code to maintain
302302
in `couch_replicator`. In the draft implementation there are about 3000
303303
lines of code saved compared to the replicator application in CouchDB 3.x
304304

src/mem3/README_reshard.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ These are mostly random notes about various modules involved in resharding. Most
8686

8787
* `mem3_reshard_job_sup` : Simple one for one supervisor which keeps track of running jobs.
8888

89-
* `mem3_reshard_store` : State persistence module. It knows how to save/restore `#job{}` and `#state{}` records to/from `_local` docs. It is also re-used for serializing `#job{}` into ejson by the HTTP API module.
89+
* `mem3_reshard_store` : State persistence module. It knows how to save/restore `#job{}` and `#state{}` records to/from `_local` docs. It is also reused for serializing `#job{}` into ejson by the HTTP API module.
9090

9191
* `mem3_reshard_validate` : Validate that source exists, target ranges don't have gaps in them, etc.
9292

0 commit comments

Comments
 (0)