You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@groovy.apache.org by pa...@apache.org on 2016/03/05 12:08:52 UTC

groovy git commit: VMPlugin: Fixed typo in Javadoc (closes #280)

Repository: groovy
Updated Branches:
  refs/heads/master 7cc9f7111 -> e610cc93d


VMPlugin: Fixed typo in Javadoc (closes #280)


Project: http://git-wip-us.apache.org/repos/asf/groovy/repo
Commit: http://git-wip-us.apache.org/repos/asf/groovy/commit/e610cc93
Tree: http://git-wip-us.apache.org/repos/asf/groovy/tree/e610cc93
Diff: http://git-wip-us.apache.org/repos/asf/groovy/diff/e610cc93

Branch: refs/heads/master
Commit: e610cc93d3308bc7fac184de8c05cf9f7afe226b
Parents: 7cc9f71
Author: Kris Marwood <kr...@krismarwood.com>
Authored: Sat Mar 5 21:47:32 2016 +1100
Committer: pascalschumacher <pa...@gmx.net>
Committed: Sat Mar 5 12:08:04 2016 +0100

----------------------------------------------------------------------
 src/main/org/codehaus/groovy/vmplugin/VMPlugin.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/groovy/blob/e610cc93/src/main/org/codehaus/groovy/vmplugin/VMPlugin.java
----------------------------------------------------------------------
diff --git a/src/main/org/codehaus/groovy/vmplugin/VMPlugin.java b/src/main/org/codehaus/groovy/vmplugin/VMPlugin.java
index 5702bb2..3ca6bdd 100644
--- a/src/main/org/codehaus/groovy/vmplugin/VMPlugin.java
+++ b/src/main/org/codehaus/groovy/vmplugin/VMPlugin.java
@@ -40,7 +40,7 @@ public interface VMPlugin {
      * This method will require at least Java 7, but since the source has to compile
      * on older Java versions as well it is not marked to return a MethodHandle and
      * uses Object instead
-     * @return  null in case of jdk&lt;7, otherwise a handel that takes the method call
+     * @return  null in case of jdk&lt;7, otherwise a handle that takes the method call
      *          arguments for the invokespecial call
      */
     Object getInvokeSpecialHandle(Method m, Object receiver);