Skip to content

Commit c11c435

Browse files
authored
(#8742) - fix dead link in docs
1 parent 960ff5e commit c11c435

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

TESTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ The PouchDB test suite expects an instance of CouchDB (version 1.6.1 and above)
1212
running in [Admin Party](http://guide.couchdb.org/draft/security.html#party) on
1313
`http://127.0.0.1:5984` with [CORS
1414
enabled](https://github.com/pouchdb/add-cors-to-couchdb). See the [official
15-
CouchDB documentation](http://docs.couchdb.org/en/1.6.1/install/index.html) for
15+
CouchDB documentation](https://docs.couchdb.org/en/stable/install/index.html) for
1616
a guide on how to install CouchDB.
1717

1818
If you have CouchDB available at a different URL, you can assign this URL to the

docs/_includes/api/changes.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
* `options.doc_ids`: Only show changes for docs with these ids (array of strings).
3131
* `options.query_params`: Object containing properties that are passed to the filter function, e.g. `{"foo:"bar"}`, where `"bar"` will be available in the filter function as `params.query.foo`. To access the `params`, define your filter function like `function (doc, params) {/* ... */}`.
3232
* `options.view`: Specify a view function (e.g. `'design_doc_name/view_name'` or `'view_name'` as shorthand for `'view_name/view_name'`) to act as a filter. Documents counted as "passed" for a view filter if a map function emits at least one record for them. **Note**: `options.filter` must be set to `'_view'` for this option to work.
33-
* `options.selector`: Filter using a query/pouchdb-find [selector](http://docs.couchdb.org/en/2.0.0/api/database/find.html#selector-syntax). **Note**: Selectors are not supported in CouchDB 1.x. Cannot be used in combination with the filter option.
33+
* `options.selector`: Filter using a query/pouchdb-find [selector](https://docs.couchdb.org/en/stable/api/database/find.html#find-selectors). **Note**: Cannot be used in combination with the filter option.
3434

3535
**Advanced Options:**
3636

docs/_includes/api/replication.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
* `options.doc_ids`: Only show changes for docs with these ids (array of strings).
2222
* `options.query_params`: Object containing properties that are passed to the filter function, e.g. `{"foo":"bar"}`, where `"bar"` will be available in the filter function as `params.query.foo`. To access the `params`, define your filter function like `function (doc, params) {/* ... */}`.
2323
* `options.view`: Specify a view function (e.g. `'design_doc_name/view_name'` or `'view_name'` as shorthand for `'view_name/view_name'`) to act as a filter. Documents counted as "passed" for a view filter if a map function emits at least one record for them. **Note**: `options.filter` must be set to `'_view'` for this option to work.
24-
* `options.selector`: Filter using a query/pouchdb-find [selector](http://docs.couchdb.org/en/2.0.0/api/database/find.html#selector-syntax). **Note**: Selectors are not supported in CouchDB 1.x.
24+
* `options.selector`: Filter using a query/pouchdb-find [selector](https://docs.couchdb.org/en/stable/api/database/find.html#find-selectors).
2525

2626
**Advanced Options:**
2727

0 commit comments

Comments
 (0)