You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by ol...@apache.org on 2021/08/11 13:10:12 UTC

[sling-org-apache-sling-event] branch master updated: fix typo

This is an automated email from the ASF dual-hosted git repository.

olli pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sling-org-apache-sling-event.git


The following commit(s) were added to refs/heads/master by this push:
     new 14a0ffc  fix typo
14a0ffc is described below

commit 14a0ffc61b32735077edb391ba98132d225e6902
Author: Oliver Lietz <ol...@apache.org>
AuthorDate: Tue Jun 18 11:31:03 2019 +0200

    fix typo
---
 .../java/org/apache/sling/event/impl/jobs/console/WebConsolePlugin.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/main/java/org/apache/sling/event/impl/jobs/console/WebConsolePlugin.java b/src/main/java/org/apache/sling/event/impl/jobs/console/WebConsolePlugin.java
index a2956e4..558ee7a 100644
--- a/src/main/java/org/apache/sling/event/impl/jobs/console/WebConsolePlugin.java
+++ b/src/main/java/org/apache/sling/event/impl/jobs/console/WebConsolePlugin.java
@@ -101,7 +101,7 @@ public class WebConsolePlugin extends HttpServlet implements JobConsumer {
     private String getQueueErrorMessage(final HttpServletRequest req, final String command) {
         final String name = req.getParameter(PAR_QUEUE);
         if ( name == null || name.length() == 0 ) {
-            return "Queue parameter missing for opertation " + command;
+            return "Queue parameter missing for operation " + command;
         }
         return "Queue with name '" + name + "' not found for operation " + command;
     }