diff options
author | chiba <chiba@30ef5769-5b8d-40dd-aea6-55b5d6557bb3> | 2005-03-24 14:59:56 +0000 |
---|---|---|
committer | chiba <chiba@30ef5769-5b8d-40dd-aea6-55b5d6557bb3> | 2005-03-24 14:59:56 +0000 |
commit | 6ab159e1f5f9053f6a25b3c99ed1649c7af1a6dc (patch) | |
tree | e80d83cd7fa219cd5d8f8d79caf1766f29e59c6c /tutorial | |
parent | 13ecd1542cc38d7a4699006ad9d7471fa224be0b (diff) | |
download | javassist-6ab159e1f5f9053f6a25b3c99ed1649c7af1a6dc.tar.gz javassist-6ab159e1f5f9053f6a25b3c99ed1649c7af1a6dc.zip |
clarify that $0 means this.
git-svn-id: http://anonsvn.jboss.org/repos/javassist/trunk@164 30ef5769-5b8d-40dd-aea6-55b5d6557bb3
Diffstat (limited to 'tutorial')
-rw-r--r-- | tutorial/tutorial2.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tutorial/tutorial2.html b/tutorial/tutorial2.html index 6bc3d50b..b869307b 100644 --- a/tutorial/tutorial2.html +++ b/tutorial/tutorial2.html @@ -186,7 +186,7 @@ have special meaning: <ul><table border=0> <tr> <td><code>$0</code>, <code>$1</code>, <code>$2</code>, ...    </td> -<td>Actual parameters</td> +<td><code>this</code> and actual parameters</td> </tr> <tr> @@ -251,7 +251,7 @@ the class currently edited.</td> <p>The parameters passed to the target method are accessible with -<code>$0</code>, <code>$1</code>, <code>$2</code>, ... instead of +<code>$1</code>, <code>$2</code>, ... instead of the original parameter names. <code>$1</code> represents the first parameter, <code>$2</code> represents the second parameter, and @@ -569,7 +569,7 @@ starting with <code>$</code> have special meaning <ul><table border=0> <tr> <td><code>$0</code>, <code>$1</code>, <code>$2</code>, ...    </td> -<td>Actual parameters</td> +<td><code>this</code> and actual parameters</td> </tr> <tr> |