]> source.dussan.org Git - sonarqube.git/commitdiff
docs: Fix "createdBefore" param description
authorBruno GuimarĂ£es <brunobastosg@gmail.com>
Tue, 12 May 2020 00:49:56 +0000 (21:49 -0300)
committersonartech <sonartech@sonarsource.com>
Tue, 12 May 2020 20:03:55 +0000 (20:03 +0000)
server/sonar-webserver-webapi/src/main/java/org/sonar/server/issue/ws/SearchAction.java

index dfb277875c1041f90342bbe68674726557413113..7d7aae8b371dcff050bfe9d31f3ae5537f4b44c0 100644 (file)
@@ -297,7 +297,7 @@ public class SearchAction implements IssuesWsAction {
         "If this parameter is set, createdSince must not be set")
       .setExampleValue("2017-10-19 or 2017-10-19T13:00:00+0200");
     action.createParam(PARAM_CREATED_BEFORE)
-      .setDescription("To retrieve issues created before the given date (inclusive). <br>" +
+      .setDescription("To retrieve issues created before the given date (exclusive). <br>" +
         "Either a date (server timezone) or datetime can be provided.")
       .setExampleValue("2017-10-19 or 2017-10-19T13:00:00+0200");
     action.createParam(PARAM_CREATED_IN_LAST)