--- old/src/share/classes/java/lang/invoke/package-info.java 2013-06-27 18:35:33.000000000 -0700 +++ new/src/share/classes/java/lang/invoke/package-info.java 2013-06-27 18:35:33.000000000 -0700 @@ -43,13 +43,13 @@ * * * - *

Summary of relevant Java Virtual Machine changes

+ *

Summary of relevant Java Virtual Machine changes

* The following low-level information summarizes relevant parts of the * Java Virtual Machine specification. For full details, please see the * current version of that specification. * * Each occurrence of an {@code invokedynamic} instruction is called a dynamic call site. - *

{@code invokedynamic} instructions

+ *

{@code invokedynamic} instructions

* A dynamic call site is originally in an unlinked state. In this state, there is * no target method for the call site to invoke. *

@@ -97,7 +97,7 @@ * If this happens, the same error will the thrown for all subsequent * attempts to execute the dynamic call site. * - *

timing of linkage

+ *

timing of linkage

* A dynamic call site is linked just before its first execution. * The bootstrap method call implementing the linkage occurs within * a thread that is attempting a first execution. @@ -131,7 +131,7 @@ * just before its first invocation. * There is no way to undo the effect of a completed bootstrap method call. * - *

types of bootstrap methods

+ *

types of bootstrap methods

* As long as each bootstrap method can be correctly invoked * by {@code MethodHandle.invoke}, its detailed type is arbitrary. * For example, the first argument could be {@code Object}