diff options
author | Greg <gkopff@highflyingobjects.com.au> | 2014-06-19 21:05:20 +0800 |
---|---|---|
committer | Greg <gkopff@highflyingobjects.com.au> | 2014-06-19 21:05:20 +0800 |
commit | 749abfe3b0688c9a7f2571db347943de9001b1c6 (patch) | |
tree | 82e421e286d911538f9f162eb10e37ad30e6d0ab /tutorial | |
parent | ae7b93b7b7466616ad3b8f4313c27271dc2ee38d (diff) | |
download | javassist-749abfe3b0688c9a7f2571db347943de9001b1c6.tar.gz javassist-749abfe3b0688c9a7f2571db347943de9001b1c6.zip |
Fix typos.
Diffstat (limited to 'tutorial')
-rw-r--r-- | tutorial/tutorial.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tutorial/tutorial.html b/tutorial/tutorial.html index 95da0729..3a125f08 100644 --- a/tutorial/tutorial.html +++ b/tutorial/tutorial.html @@ -39,7 +39,7 @@ Shigeru Chiba Java bytecode is stored in a binary file called a class file. Each class file contains one Java class or interface. -<p>The class <code>Javassist.CtClass</code> is an absatract +<p>The class <code>Javassist.CtClass</code> is an abstract representation of a class file. A <code>CtClass</code> (compile-time class) object is a handle for dealing with a class file. The following program is a very simple example: @@ -67,7 +67,7 @@ In the case of the program shown above, the <code>test.Rectangle</code> is obtained from the <code>ClassPool</code> object and it is assigned to a variable <code>cc</code>. -The <code>ClassPool</code> object returned by <code>getDfault()</code> +The <code>ClassPool</code> object returned by <code>getDefault()</code> searches the default system search path. <p>From the implementation viewpoint, <code>ClassPool</code> is a hash |