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/07/16 01:40:00 UTC

groovy git commit: GROOVY-7887: Typo s/now/know/ in core-domain-specific-languages

Repository: groovy
Updated Branches:
  refs/heads/master 07564a3f9 -> 322678737


GROOVY-7887: Typo s/now/know/ in core-domain-specific-languages


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

Branch: refs/heads/master
Commit: 3226787373529d0be61b42d6ed61941643e187b2
Parents: 07564a3
Author: paulk <pa...@asert.com.au>
Authored: Sat Jul 16 11:39:08 2016 +1000
Committer: paulk <pa...@asert.com.au>
Committed: Sat Jul 16 11:39:46 2016 +1000

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


http://git-wip-us.apache.org/repos/asf/groovy/blob/32267873/src/spec/doc/core-domain-specific-languages.adoc
----------------------------------------------------------------------
diff --git a/src/spec/doc/core-domain-specific-languages.adoc b/src/spec/doc/core-domain-specific-languages.adoc
index e53e436..8b12a3a 100644
--- a/src/spec/doc/core-domain-specific-languages.adoc
+++ b/src/spec/doc/core-domain-specific-languages.adoc
@@ -476,7 +476,7 @@ include::{projectdir}/src/spec/test/DelegatesToSpecTest.groovy[tags=delegatesto_
 Remember that this works out of the box�*without* having to annotate
 with�`@DelegatesTo`. However, to make the IDE aware of the delegate
 type, or the�*type checker* aware of it, we need to add�`@DelegatesTo`.
-And in this case, it will now that the�`Greeter` variable is of
+And in this case, it will know that the�`Greeter` variable is of
 type�`Greeter`, so it will not report errors on the�_sayHello_
 method�*even if the exec method doesn\u2019t explicitly define the target as
 of type Greeter*. This is a very powerful feature, because it prevents