Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Replace non unicode with ASCII character #49

Merged
merged 1 commit into from
Oct 15, 2021
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 @@ -74,7 +74,7 @@ public String id() {
}

/**
* The documents index. For data streams, this should be the documents backing
* The document's index. For data streams, this should be the document's backing
* index.
*
* API name: {@code _index}
Expand All @@ -84,7 +84,7 @@ public String index() {
}

/**
* The documents relevance with regard to this search request.
* The document's relevance with regard to this search request.
*
* API name: {@code rating}
*/
Expand Down Expand Up @@ -137,7 +137,7 @@ public Builder id(String value) {
}

/**
* The documents index. For data streams, this should be the documents backing
* The document's index. For data streams, this should be the document's backing
* index.
*
* API name: {@code _index}
Expand All @@ -148,7 +148,7 @@ public Builder index(String value) {
}

/**
* The documents relevance with regard to this search request.
* The document's relevance with regard to this search request.
*
* API name: {@code rating}
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ public Number metricScore() {

/**
* The unrated_docs section contains an _index and _id entry for each document
* in the search result for this query that didnt have a ratings value. This
* in the search result for this query that didn't have a ratings value. This
* can be used to ask the user to supply ratings for these documents
*
* API name: {@code unrated_docs}
Expand Down Expand Up @@ -190,7 +190,7 @@ public Builder metricScore(Number value) {

/**
* The unrated_docs section contains an _index and _id entry for each document
* in the search result for this query that didnt have a ratings value. This
* in the search result for this query that didn't have a ratings value. This
* can be used to ask the user to supply ratings for these documents
*
* API name: {@code unrated_docs}
Expand All @@ -202,7 +202,7 @@ public Builder unratedDocs(List<UnratedDocument> value) {

/**
* The unrated_docs section contains an _index and _id entry for each document
* in the search result for this query that didnt have a ratings value. This
* in the search result for this query that didn't have a ratings value. This
* can be used to ask the user to supply ratings for these documents
*
* API name: {@code unrated_docs}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ protected RankEvalRequestItem(Builder builder) {
}

/**
* The search requests ID, used to group result details later.
* The search request's ID, used to group result details later.
*
* API name: {@code id}
*/
Expand Down Expand Up @@ -199,7 +199,7 @@ public static class Builder implements ObjectBuilder<RankEvalRequestItem> {
private Map<String, JsonValue> params;

/**
* The search requests ID, used to group result details later.
* The search request's ID, used to group result details later.
*
* API name: {@code id}
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ public Boolean flatSettings() {
/**
* Period to wait for each node to respond. If a node does not respond before
* its timeout expires, the response does not include its stats. However, timed
* out nodes are included in the responses _nodes.failed property. Defaults to
* out nodes are included in the response's _nodes.failed property. Defaults to
* no timeout.
*
* API name: {@code timeout}
Expand Down Expand Up @@ -136,7 +136,7 @@ public Builder flatSettings(@Nullable Boolean value) {
/**
* Period to wait for each node to respond. If a node does not respond before
* its timeout expires, the response does not include its stats. However, timed
* out nodes are included in the responses _nodes.failed property. Defaults to
* out nodes are included in the response's _nodes.failed property. Defaults to
* no timeout.
*
* API name: {@code timeout}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ public ClusterIndices indices() {
}

/**
* Contains statistics about nodes selected by the requests node filters.
* Contains statistics about nodes selected by the request's node filters.
*
* API name: {@code nodes}
*/
Expand Down Expand Up @@ -216,7 +216,7 @@ public Builder indices(Function<ClusterIndices.Builder, ObjectBuilder<ClusterInd
}

/**
* Contains statistics about nodes selected by the requests node filters.
* Contains statistics about nodes selected by the request's node filters.
*
* API name: {@code nodes}
*/
Expand All @@ -226,7 +226,7 @@ public Builder nodes(ClusterNodes value) {
}

/**
* Contains statistics about nodes selected by the requests node filters.
* Contains statistics about nodes selected by the request's node filters.
*
* API name: {@code nodes}
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ protected ClusterNodes(Builder builder) {
}

/**
* Contains counts for nodes selected by the requests node filters.
* Contains counts for nodes selected by the request's node filters.
*
* API name: {@code count}
*/
Expand Down Expand Up @@ -291,7 +291,7 @@ public static class Builder implements ObjectBuilder<ClusterNodes> {
private List<String> versions;

/**
* Contains counts for nodes selected by the requests node filters.
* Contains counts for nodes selected by the request's node filters.
*
* API name: {@code count}
*/
Expand All @@ -301,7 +301,7 @@ public Builder count(ClusterNodeCount value) {
}

/**
* Contains counts for nodes selected by the requests node filters.
* Contains counts for nodes selected by the request's node filters.
*
* API name: {@code count}
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public List<GeoIpNodeDatabaseName> databases() {

/**
* Downloaded database files, including related license files. Elasticsearch
* stores these files in the nodes temporary directory:
* stores these files in the node's temporary directory:
* $ES_TMPDIR/geoip-databases/&lt;node_id&gt;.
*
* API name: {@code files_in_temp}
Expand Down Expand Up @@ -171,7 +171,7 @@ public Builder addDatabases(Function<GeoIpNodeDatabaseName.Builder, ObjectBuilde

/**
* Downloaded database files, including related license files. Elasticsearch
* stores these files in the nodes temporary directory:
* stores these files in the node's temporary directory:
* $ES_TMPDIR/geoip-databases/&lt;node_id&gt;.
*
* API name: {@code files_in_temp}
Expand All @@ -183,7 +183,7 @@ public Builder filesInTemp(List<String> value) {

/**
* Downloaded database files, including related license files. Elasticsearch
* stores these files in the nodes temporary directory:
* stores these files in the node's temporary directory:
* $ES_TMPDIR/geoip-databases/&lt;node_id&gt;.
*
* API name: {@code files_in_temp}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ protected NodesResponseBase(AbstractBuilder<?> builder) {
}

/**
* Contains statistics about the number of nodes selected by the requests node
* Contains statistics about the number of nodes selected by the request's node
* filters.
*
* API name: {@code _nodes}
Expand Down Expand Up @@ -88,7 +88,7 @@ protected abstract static class AbstractBuilder<BuilderT extends AbstractBuilder
private NodeStatistics nodeStats;

/**
* Contains statistics about the number of nodes selected by the requests node
* Contains statistics about the number of nodes selected by the request's node
* filters.
*
* API name: {@code _nodes}
Expand All @@ -99,7 +99,7 @@ public BuilderT nodeStats(NodeStatistics value) {
}

/**
* Contains statistics about the number of nodes selected by the requests node
* Contains statistics about the number of nodes selected by the request's node
* filters.
*
* API name: {@code _nodes}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ public String buildType() {
}

/**
* The nodes host name.
* The node's host name.
*
* API name: {@code host}
*/
Expand All @@ -199,7 +199,7 @@ public NodeInfoHttp http() {
}

/**
* The nodes IP address.
* The node's IP address.
*
* API name: {@code ip}
*/
Expand Down Expand Up @@ -630,7 +630,7 @@ public Builder buildType(String value) {
}

/**
* The nodes host name.
* The node's host name.
*
* API name: {@code host}
*/
Expand All @@ -655,7 +655,7 @@ public Builder http(Function<NodeInfoHttp.Builder, ObjectBuilder<NodeInfoHttp>>
}

/**
* The nodes IP address.
* The node's IP address.
*
* API name: {@code ip}
*/
Expand Down