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 2015/10/18 22:30:02 UTC

incubator-groovy git commit: Fix incorrect class name in metaprogramming doc (closes #146)

Repository: incubator-groovy
Updated Branches:
  refs/heads/master 5267924ba -> b17214cf4


Fix incorrect class name in metaprogramming doc (closes #146)


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

Branch: refs/heads/master
Commit: b17214cf454592351027ae3cf5918f56c658d9b6
Parents: 5267924
Author: Michal Kordas <ko...@gmail.com>
Authored: Sun Oct 18 22:08:43 2015 +0200
Committer: pascalschumacher <pa...@gmx.net>
Committed: Sun Oct 18 22:29:21 2015 +0200

----------------------------------------------------------------------
 src/spec/doc/core-metaprogramming.adoc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-groovy/blob/b17214cf/src/spec/doc/core-metaprogramming.adoc
----------------------------------------------------------------------
diff --git a/src/spec/doc/core-metaprogramming.adoc b/src/spec/doc/core-metaprogramming.adoc
index cdc4bca..d8b6c51 100644
--- a/src/spec/doc/core-metaprogramming.adoc
+++ b/src/spec/doc/core-metaprogramming.adoc
@@ -1755,7 +1755,7 @@ For details
 
 ==== Easier cloning and externalizing
 
-Groovy provides two annotations aimed at facilitating the implementation of `Clonable` and `Externalizable` interfaces,
+Groovy provides two annotations aimed at facilitating the implementation of `Cloneable` and `Externalizable` interfaces,
 respectively named `@AutoClone` and `@AutoExternalize`.
 
 [[xform-AutoClone]]