Skip to content
This repository was archived by the owner on Oct 17, 2022. It is now read-only.

Commit 9e80aed

Browse files
committed
typo fixes
1 parent b5d1cd7 commit 9e80aed

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

rfcs/006-mango-fdb.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ document are to be interpreted as described in
3535

3636
# Detailed Description
3737

38-
Mango is a declarative JSON querying syntax that allows a user to retrieve documents based on a given selector. It supports defining indexes for queries which will improve query performance. In CouchDB 2.x Mango is a query layer built on top of Map/Reduce indexes. Each Mango query follows a two step process, first a subset of the selector is converted into a map query to be used with a predefined index or falling back to _all_docs if no indexes are available. Each document retrieved from the index is then matched against the query selector.
38+
Mango is a declarative JSON querying syntax that allows a user to retrieve documents based on a given selector. It supports defining indexes for queries which will improve query performance. In CouchDB 2.x Mango is a query layer built on top of Map/Reduce indexes. Each Mango query follows a two step process, first a subset of the selector is converted into a map query to be used with a predefined index or falling back to `_all_docs` if no indexes are available. Each document retrieved from the index is then matched against the query selector.
3939

4040
In a future release of CouchDB with FoundationDB the external behaviour of Mango will remain the same but internally will have its own indexes and index management. This will allow for Mango indexes to be updated in the same transaction where a write request happens - index on write. Later we can also look at adding Mango specific functionality.
4141

@@ -84,7 +84,7 @@ CouchDB has a defined [index collation specification](http://docs.couchdb.org/en
8484
\x50 Array
8585
\x60 Objects
8686

87-
An example for a number key would be (\x30, 1). Just too note, Null and Boolean values won’t need to be composite keys as the type key is the value.
87+
An example for a number key would be (\x30, 1). Note, Null and Boolean values won’t need to be composite keys as the type key is the value.
8888

8989
### Index Limits
9090

0 commit comments

Comments
 (0)