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 2019/12/26 20:10:04 UTC

[groovy] 03/03: BindingProxy: Fix typo in javadoc.

This is an automated email from the ASF dual-hosted git repository.

pascalschumacher pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/groovy.git

commit a67b490e1aec4d36fe14e201417f93d1b9cc2056
Author: Pascal Schumacher <pa...@gmx.net>
AuthorDate: Thu Dec 26 21:08:16 2019 +0100

    BindingProxy: Fix typo in javadoc.
---
 .../src/main/java/org/apache/groovy/swing/binding/BindingProxy.java   | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/subprojects/groovy-swing/src/main/java/org/apache/groovy/swing/binding/BindingProxy.java b/subprojects/groovy-swing/src/main/java/org/apache/groovy/swing/binding/BindingProxy.java
index 340f29e..25abed2 100644
--- a/subprojects/groovy-swing/src/main/java/org/apache/groovy/swing/binding/BindingProxy.java
+++ b/subprojects/groovy-swing/src/main/java/org/apache/groovy/swing/binding/BindingProxy.java
@@ -28,10 +28,10 @@ import java.util.Map;
 
 /**
  * This class returns half bound {@link org.apache.groovy.swing.binding.FullBinding}s on the source half to the model
- * object for every property reference (and I do mean every, valid or not, queried before or not).  These returned
+ * object for every property reference (and I do mean every, valid or not, queried before or not). These returned
  * half bindings are stored strongly in a list when generated.
  *
- * Changing the model will keep all existing bindings but change the source on all of the bininfs
+ * Changing the model will keep all existing bindings but change the source on all of the bindings.
  *
  * Formerly Known as Model Binding.
  *