Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,9 @@ public String name() {
/**
* Gets the stopwords.
*
* Custom stopwords to use with the named analyzer.
* Custom stopwords to use with the named analyzer where supported. Not used for `keyword`, `simple`, `whitespace`,
* `simple_asciifolding` or `perfield` analyzers. Ensure stopwords match the folded case for analyzers that perform
* folding.
*
* @return the stopwords
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,9 @@ public String name() {
/**
* Gets the stopwords.
*
* Custom stopwords to use with the named analyzer.
* Custom stopwords to use with the named analyzer where supported. Not used for `keyword`, `simple`, `whitespace`,
* `simple_asciifolding` or `perfield` analyzers. Ensure stopwords match the folded case for analyzers that perform
* folding.
*
* @return the stopwords
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -735,8 +735,8 @@ public void setOptions(final DesignDocumentOptions options) {
* The validation function can abort the pending document write by throwing one of two error objects:
*
* ```
* // user is not authorized to make the change but may re-authenticate throw({ unauthorized: 'Error message here.'
* });
* // user is not authorized to make the change but may
* // re-authenticate throw({ unauthorized: 'Error message here.' });
*
* // change is not allowed throw({ forbidden: 'Error message here.' });
* ```
Expand Down
Loading