diff --git a/src/site/xdoc/guide.xml b/src/site/xdoc/guide.xml
index 9eeda42..4790aba 100644
--- a/src/site/xdoc/guide.xml
+++ b/src/site/xdoc/guide.xml
@@ -386,7 +386,7 @@ In addition to the logging methods, the following are provided for code guards:
The
If a custom LogFactory implementation is used, however, then a
-
This is intended to present a guide to the process by which Java bytecode uses bytecode in other classes
from the perspective of the language and virtual machine specifications. The focus will be on deciding
- which bytecode will be used (rather than the mechanics of the usage). It focusses on facts and terminology.
+ which bytecode will be used (rather than the mechanics of the usage). It focuses on facts and terminology.
The process is recursive: it is therefore difficult to pick a starting point.
- Sun's documentation starts from the persective of the startup of a new application.
+ Sun's documentation starts from the perspective of the startup of a new application.
This guide starts from the perspective of an executing application.
@@ -304,7 +304,7 @@ limitations under the License.
In practical development terms: The System classloader returned by
- In practical development terms: two classes with the same symbolic name can only be used interchangably
+ In practical development terms: two classes with the same symbolic name can only be used interchangeably
if they are defined by the same classloader. A classic symptom indicative of a classloader issue is that
two classes with the same fully qualified name are found to be incompatible during a method call.
This may happen when a member is expecting an interface which is (seemingly) implemented by a class
@@ -340,7 +340,7 @@ limitations under the License.
- In practial development terms: This is very important to bear in mind when trying to solve classloader issues.
+ In practical development terms: This is very important to bear in mind when trying to solve classloader issues.
A classic misunderstanding is this: suppose class A defined by classloader C has a symbolic reference to
class B and further that when C initiates loading of B, this is delegated to classloader D which defines B.
Class B can now only resolve symbols that can be loaded by D, rather than all those which can be loaded by C.
@@ -515,9 +515,9 @@ limitations under the License.
Performance dictates that symbolic references to the logging systems are present in the implementation
classes (again, reflection would simply be too slow). So, for an implementation to be able to function,
- it is neccessary for the logging system to be loadable by the classloader that defines the implementing class.
+ it is necessary for the logging system to be loadable by the classloader that defines the implementing class.
commons-logging.jar file includes the JCL API, the default
-LogFactory implemenation and thin-wrapper Log
+LogFactory implementation and thin-wrapper Log
implementations for
Log4J,
Avalon LogKit,
@@ -550,7 +550,7 @@ API's for utility functions and tools should log these at the debug level
if they are caught at all by internal code.
For higher level frameworks and middleware components,
-these exceptions should be caught immediatly prior to crossing
+these exceptions should be caught immediately prior to crossing
the API/SPI interface back to user code-space,
logged with full stack trace at info level,
and rethrown.
@@ -685,7 +685,7 @@ prior to 1.3 the code defaults to a standard Hashtable instead.
WeakHashtable alone can be insufficent to allow garbage collection
+WeakHashtable alone can be insufficient to allow garbage collection
of a classloader without a call to release. If the abstract class
LogFactory is loaded by a parent classloader and a concrete
subclass implementation of LogFactory is loaded by a child
diff --git a/src/site/xdoc/tech.xml b/src/site/xdoc/tech.xml
index a817b66..119bdf9 100644
--- a/src/site/xdoc/tech.xml
+++ b/src/site/xdoc/tech.xml
@@ -200,11 +200,11 @@ limitations under the License.
Classloader.getSystemClassLoader()
- will be either the bootstrap classloader or a direct descendent of the bootstrap classloader.
+ will be either the bootstrap classloader or a direct descendant of the bootstrap classloader.
Only when debugging issues concerning the system classloader should there be any need to consider the detailed
differences between the bootstrap classloader and the system classloader.
@@ -322,7 +322,7 @@ limitations under the License.
Note that the behaviour described here only applies if the standard Tomcat