From bebc547039887001bb752775833ae51deeedad9f Mon Sep 17 00:00:00 2001 From: Olivier Lamy Date: Mon, 17 Oct 2011 08:00:14 +0000 Subject: [PATCH] looks to be more english speaking :-) git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@1185036 13f79535-47bb-0310-9956-ffa450edef68 --- .../org/apache/archiva/rest/api/services/SearchService.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/archiva-modules/archiva-web/archiva-rest/archiva-rest-api/src/main/java/org/apache/archiva/rest/api/services/SearchService.java b/archiva-modules/archiva-web/archiva-rest/archiva-rest-api/src/main/java/org/apache/archiva/rest/api/services/SearchService.java index fb88e6775..46512b832 100644 --- a/archiva-modules/archiva-web/archiva-rest/archiva-rest-api/src/main/java/org/apache/archiva/rest/api/services/SearchService.java +++ b/archiva-modules/archiva-web/archiva-rest/archiva-rest-api/src/main/java/org/apache/archiva/rest/api/services/SearchService.java @@ -52,7 +52,7 @@ public interface SearchService @Produces( { MediaType.APPLICATION_JSON, MediaType.APPLICATION_XML, MediaType.TEXT_PLAIN } ) @RedbackAuthorization( noPermission = true, noRestriction = false ) /** - * search will be apply on all repositories the user used has karma + * search will be apply on all repositories the current user has karma */ List quickSearch( @QueryParam( "queryString" ) String queryString ) throws ArchivaRestServiceException; @@ -62,7 +62,7 @@ public interface SearchService @Produces( { MediaType.APPLICATION_JSON, MediaType.APPLICATION_XML, MediaType.TEXT_PLAIN } ) @RedbackAuthorization( noPermission = true, noRestriction = false ) /** - * search will be apply on all repositories the user used has karma + * search will be apply on all repositories the current user has karma */ List getArtifactVersions( @QueryParam( "groupId" ) String groupId, @QueryParam( "artifactId" ) String artifactId, @@ -75,7 +75,7 @@ public interface SearchService @RedbackAuthorization( noPermission = true, noRestriction = false ) /** * If searchRequest contains repositories, the search will be done only on those repositories. - * if no repositories, the search will be apply on all repositories the user used has karma + * if no repositories, the search will be apply on all repositories the current user has karma */ List searchArtifacts( SearchRequest searchRequest ) throws ArchivaRestServiceException;