aboutsummaryrefslogtreecommitdiffstats
path: root/vespajlib/src/main/java/com/yahoo/concurrent/ThreadLocalDirectory.java
diff options
context:
space:
mode:
Diffstat (limited to 'vespajlib/src/main/java/com/yahoo/concurrent/ThreadLocalDirectory.java')
-rw-r--r--vespajlib/src/main/java/com/yahoo/concurrent/ThreadLocalDirectory.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/vespajlib/src/main/java/com/yahoo/concurrent/ThreadLocalDirectory.java b/vespajlib/src/main/java/com/yahoo/concurrent/ThreadLocalDirectory.java
index 5ab1c88775a..016ad167e98 100644
--- a/vespajlib/src/main/java/com/yahoo/concurrent/ThreadLocalDirectory.java
+++ b/vespajlib/src/main/java/com/yahoo/concurrent/ThreadLocalDirectory.java
@@ -95,7 +95,7 @@ public final class ThreadLocalDirectory<AGGREGATOR, SAMPLE> {
* This might be an empty list, creating a new counter set to zero, or
* even copying the current state of LocalInstance.current.
* LocalInstance.current will be set to the value received from this
- * factory after invokation this method.
+ * factory after invocation this method.
*
* <p>
* The first time this method is invoked for a thread, previous will be
@@ -223,7 +223,7 @@ public final class ThreadLocalDirectory<AGGREGATOR, SAMPLE> {
// Has to set registered before adding to the list. Otherwise, the
// instance might be removed from the list, set as unregistered, and
// then the local thread might happily remove that information. The Java
- // memory model is a guarantuee for the minimum amount of visibility,
+ // memory model is a guarantee for the minimum amount of visibility,
// not a definition of the actual amount.
q.setRegistered(true);
synchronized (directoryLock) {