This is an automated email from the ASF dual-hosted git repository.
ggregory pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/logging-log4j2.git
The following commit(s) were added to refs/heads/main by this push:
new 62f112fa7f Fix Javadoc typo
62f112fa7f is described below
commit 62f112fa7f6b35cbd690712e994cdc8f5b7b53e0
Author: Gary Gregory <[email protected]>
AuthorDate: Fri May 31 09:38:31 2024 -0400
Fix Javadoc typo
---
.../apache/logging/log4j/core/selector/ClassLoaderContextSelector.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/log4j-core/src/main/java/org/apache/logging/log4j/core/selector/ClassLoaderContextSelector.java
b/log4j-core/src/main/java/org/apache/logging/log4j/core/selector/ClassLoaderContextSelector.java
index 4e7990f9e5..59dc052256 100644
---
a/log4j-core/src/main/java/org/apache/logging/log4j/core/selector/ClassLoaderContextSelector.java
+++
b/log4j-core/src/main/java/org/apache/logging/log4j/core/selector/ClassLoaderContextSelector.java
@@ -38,7 +38,7 @@ import org.apache.logging.log4j.util.StackLocatorUtil;
/**
* This ContextSelector chooses a LoggerContext based upon the ClassLoader of
the caller. This allows Loggers assigned
- * to static variables to be released along with the classes that own then.
Other ContextSelectors will generally cause
+ * to static variables to be released along with the classes that own them.
Other ContextSelectors will generally cause
* Loggers associated with classes loaded from different ClassLoaders to be
co-mingled. This is a problem if, for
* example, a web application is undeployed as some of the Loggers being
released may be associated with a Class in a
* parent ClassLoader, which will generally have negative consequences.