You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by mi...@apache.org on 2015/07/25 15:50:11 UTC

[3/3] git commit: [flex-sdk] [refs/heads/develop] - FLEX-34837 Asdoc corrections, plus making one function static.

FLEX-34837
Asdoc corrections, plus making one function static.


Project: http://git-wip-us.apache.org/repos/asf/flex-sdk/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-sdk/commit/07e7bcf7
Tree: http://git-wip-us.apache.org/repos/asf/flex-sdk/tree/07e7bcf7
Diff: http://git-wip-us.apache.org/repos/asf/flex-sdk/diff/07e7bcf7

Branch: refs/heads/develop
Commit: 07e7bcf740ae15330874bf3747fef8cb72b322bf
Parents: cd5f9ef
Author: Mihai Chira <mi...@apache.org>
Authored: Sat Jul 25 15:47:06 2015 +0200
Committer: Mihai Chira <mi...@apache.org>
Committed: Sat Jul 25 15:47:06 2015 +0200

----------------------------------------------------------------------
 .../apache/src/org/apache/flex/collections/VectorList.as         | 4 ++--
 frameworks/projects/framework/src/mx/binding/Binding.as          | 4 ++--
 .../projects/framework/src/mx/collections/XMLListAdapter.as      | 4 ++--
 3 files changed, 6 insertions(+), 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/07e7bcf7/frameworks/projects/apache/src/org/apache/flex/collections/VectorList.as
----------------------------------------------------------------------
diff --git a/frameworks/projects/apache/src/org/apache/flex/collections/VectorList.as b/frameworks/projects/apache/src/org/apache/flex/collections/VectorList.as
index 5892935..52b34a0 100644
--- a/frameworks/projects/apache/src/org/apache/flex/collections/VectorList.as
+++ b/frameworks/projects/apache/src/org/apache/flex/collections/VectorList.as
@@ -597,8 +597,8 @@ public class VectorList extends EventDispatcher
     }
     
     /**
-     *  Called whenever any of the contained items in the list fire an
-     *  ObjectChange event.  
+     *  Called whenever any of the contained items in the list fires a
+     *  <code>PropertyChangeEvent</code>.
      *  Wraps it in a CollectionEventKind.UPDATE.
      */    
     protected function itemUpdateHandler(event:PropertyChangeEvent):void

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/07e7bcf7/frameworks/projects/framework/src/mx/binding/Binding.as
----------------------------------------------------------------------
diff --git a/frameworks/projects/framework/src/mx/binding/Binding.as b/frameworks/projects/framework/src/mx/binding/Binding.as
index 6122921..15bef54 100644
--- a/frameworks/projects/framework/src/mx/binding/Binding.as
+++ b/frameworks/projects/framework/src/mx/binding/Binding.as
@@ -468,9 +468,9 @@ public class Binding
 
 	/**
 	 *	@private
-	 *  true iff XMLLists x and y contain the same node sequence.
+	 *  true if XMLLists x and y contain the same node sequence.
 	 */
-	private function nodeSeqEqual(x:XMLList, y:XMLList):Boolean
+	private static function nodeSeqEqual(x:XMLList, y:XMLList):Boolean
 	{
 		var n:uint = x.length();
 		if (n == y.length())

http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/07e7bcf7/frameworks/projects/framework/src/mx/collections/XMLListAdapter.as
----------------------------------------------------------------------
diff --git a/frameworks/projects/framework/src/mx/collections/XMLListAdapter.as b/frameworks/projects/framework/src/mx/collections/XMLListAdapter.as
index 0a8b5e6..f1646a7 100644
--- a/frameworks/projects/framework/src/mx/collections/XMLListAdapter.as
+++ b/frameworks/projects/framework/src/mx/collections/XMLListAdapter.as
@@ -633,8 +633,8 @@ public class XMLListAdapter extends EventDispatcher implements IList, IXMLNotifi
 	}
 
     /**
-     *  Called whenever any of the contained items in the list fire an
-     *  ObjectChange event.  
+     *  Called whenever any of the contained items in the list fires a
+     *  <code>PropertyChangeEvent</code>.
      *  Wraps it in a CollectionEventKind.UPDATE.
      *  
      *  @langversion 3.0