summaryrefslogtreecommitdiffstats
path: root/messagebus
diff options
context:
space:
mode:
authorThinh Bui <thinh.ducbui@gmail.com>2022-11-14 21:20:46 +0800
committerThinh Bui <thinh.ducbui@gmail.com>2022-11-14 21:20:46 +0800
commit99f8d59007dda5642ecf30890f9ea862da55162e (patch)
tree83307c1b972fdb47e01cbab0214aea986cb9498c /messagebus
parent60e0c807988226eba418e9c80da2fd0b8f5e9015 (diff)
fix typo invokation -> invocation
Diffstat (limited to 'messagebus')
-rwxr-xr-xmessagebus/src/main/java/com/yahoo/messagebus/routing/RoutingContext.java2
-rw-r--r--messagebus/src/vespa/messagebus/routing/iroutingpolicy.h4
-rw-r--r--messagebus/src/vespa/messagebus/routing/routingcontext.h2
3 files changed, 4 insertions, 4 deletions
diff --git a/messagebus/src/main/java/com/yahoo/messagebus/routing/RoutingContext.java b/messagebus/src/main/java/com/yahoo/messagebus/routing/RoutingContext.java
index 5ae422a46ef..1b89a842cc0 100755
--- a/messagebus/src/main/java/com/yahoo/messagebus/routing/RoutingContext.java
+++ b/messagebus/src/main/java/com/yahoo/messagebus/routing/RoutingContext.java
@@ -327,7 +327,7 @@ public class RoutingContext {
/**
* <p>Adds a child routing context to this based on a given route. This is
* the typical entry point a policy will use to select recipients during a
- * {@link RoutingPolicy#select(RoutingContext)} invokation.</p>
+ * {@link RoutingPolicy#select(RoutingContext)} invocation.</p>
*
* @param route The route to contain in the child context.
*/
diff --git a/messagebus/src/vespa/messagebus/routing/iroutingpolicy.h b/messagebus/src/vespa/messagebus/routing/iroutingpolicy.h
index 550df17196b..13fee63cd33 100644
--- a/messagebus/src/vespa/messagebus/routing/iroutingpolicy.h
+++ b/messagebus/src/vespa/messagebus/routing/iroutingpolicy.h
@@ -35,7 +35,7 @@ public:
* recipients. This is done by adding child routing contexts to the argument object. These children can then be
* iterated and manipulated even before selection pass is concluded.
*
- * @param context The complete context for the invokation of this policy. Contains all available data.
+ * @param context The complete context for the invocation of this policy. Contains all available data.
*/
virtual void select(RoutingContext &context) = 0;
@@ -44,7 +44,7 @@ public:
* merging multiple replies into a single sensible reply. The replies is contained in the child context objects of
* the argument context, and then response must be set in that context.
*
- * @param context The complete context for the invokation of this policy. Contains all available data.
+ * @param context The complete context for the invocation of this policy. Contains all available data.
*/
virtual void merge(RoutingContext &context) = 0;
diff --git a/messagebus/src/vespa/messagebus/routing/routingcontext.h b/messagebus/src/vespa/messagebus/routing/routingcontext.h
index 78c7dbf3fac..2700badb1d4 100644
--- a/messagebus/src/vespa/messagebus/routing/routingcontext.h
+++ b/messagebus/src/vespa/messagebus/routing/routingcontext.h
@@ -244,7 +244,7 @@ public:
/**
* Adds a child routing context to this based on a given route. This is the typical entry point a policy will use to
- * select recipients during a {@link RoutingPolicy#select(RoutingContext)} invokation.
+ * select recipients during a {@link RoutingPolicy#select(RoutingContext)} invocation.
*
* @param route The route to contain in the child context.
*/