Skip to content

Commit

Permalink
Fix Snapshot Javadoc Issues (elastic#57083) (elastic#57122)
Browse files Browse the repository at this point in the history
Fixing some incorrect JavaDoc and a typo.

Co-authored-by: jinwook han <[email protected]>
  • Loading branch information
original-brownbear and jinwookh authored May 25, 2020
1 parent 42a15c9 commit 184338e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
import org.elasticsearch.action.ActionType;

/**
* Unregister repository action
* Verify repository action
*/
public class VerifyRepositoryAction extends ActionType<VerifyRepositoryResponse> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,7 @@
import static org.elasticsearch.action.ValidateActions.addValidationError;

/**
* Unregister repository request.
* <p>
* The unregister repository command just unregisters the repository. No data is getting deleted from the repository.
* Verify repository request.
*/
public class VerifyRepositoryRequest extends AcknowledgedRequest<VerifyRepositoryRequest> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
import org.elasticsearch.client.ElasticsearchClient;

/**
* Builder for unregister repository request
* Builder for verify repository request
*/
public class VerifyRepositoryRequestBuilder
extends MasterNodeOperationRequestBuilder<VerifyRepositoryRequest, VerifyRepositoryResponse, VerifyRepositoryRequestBuilder> {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@

/**
* Represents a single item response for an action executed as part of the bulk API. Holds the index/type/id
* of the relevant action, and if it has failed or not (with the failure message incase it failed).
* of the relevant action, and if it has failed or not (with the failure message in case it failed).
*/
public class BulkItemResponse implements Writeable, StatusToXContentObject {

Expand Down

0 comments on commit 184338e

Please sign in to comment.