refer to CouchDB rather than Cloudant docs
[skip ci]
diff --git a/docs/_guides/mango-queries.md b/docs/_guides/mango-queries.md
index f28929d..8f6a080 100644
--- a/docs/_guides/mango-queries.md
+++ b/docs/_guides/mango-queries.md
@@ -313,7 +313,7 @@
There are many more options besides these, although note that not all of them can take advantage of indexes. For instance, `$regex`, `$ne`, and `$not` cannot use on-disk indexes, and must use in-memory filtering instead.
-The most complete documentation for selector options can be found at [Cloudant Query Language](https://docs.cloudant.com/cloudant_query.html) (which is the same thing as Mango). Any differences between this specification and PouchDB's implementation should be considered a bug; they are designed to be identical!
+The most complete documentation for selector options can be found in the [CouchDB `_find` documentation](http://docs.couchdb.org/en/2.0.0/api/database/find.html). You might also look at the [Cloudant Query Language](https://docs.cloudant.com/cloudant_query.html) documentation (which is nearly identical to Mango, other than `text` and other Cloudant-specific features). PouchDB uses CouchDB as the reference implementation; they ought to be functionally identical.
It should be noted that, over HTTP, this API currently works with CouchDB 2.0+, Cloudant, and PouchDB Server.
CouchDB 2.0 is the reference implementation, so the API should be the same. CouchDB 1.6.1 and below is not supported.
diff --git a/docs/_includes/api/query_index.html b/docs/_includes/api/query_index.html
index 32b787b..6a0a23f 100644
--- a/docs/_includes/api/query_index.html
+++ b/docs/_includes/api/query_index.html
@@ -116,7 +116,8 @@
PouchDB.debug.enable('pouchdb:find');
{% endhighlight %}
-See [the Cloudant Query Language documentation](https://docs.cloudant.com/cloudant_query.html) and [the CouchDB Mango repo](https://github.com/cloudant/mango) for more details.
+See the [CouchDB `_find` documentation](http://docs.couchdb.org/en/2.0.0/api/database/find.html) for more details on
+selectors and the Mango query language.
### More examples