FLEX-26808 Improved asdocs and comment.
Project: http://git-wip-us.apache.org/repos/asf/flex-sdk/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-sdk/commit/e0fbd86e Tree: http://git-wip-us.apache.org/repos/asf/flex-sdk/tree/e0fbd86e Diff: http://git-wip-us.apache.org/repos/asf/flex-sdk/diff/e0fbd86e Branch: refs/heads/develop Commit: e0fbd86e97e4b38a20008c8abbcdfce639ba0445 Parents: 6b86881 Author: Mihai Chira <[email protected]> Authored: Tue Mar 22 13:53:19 2016 +0100 Committer: Mihai Chira <[email protected]> Committed: Tue Mar 22 13:53:19 2016 +0100 ---------------------------------------------------------------------- frameworks/projects/spark/src/spark/components/List.as | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/e0fbd86e/frameworks/projects/spark/src/spark/components/List.as ---------------------------------------------------------------------- diff --git a/frameworks/projects/spark/src/spark/components/List.as b/frameworks/projects/spark/src/spark/components/List.as index 8100e78..e95f850 100644 --- a/frameworks/projects/spark/src/spark/components/List.as +++ b/frameworks/projects/spark/src/spark/components/List.as @@ -937,8 +937,9 @@ public class List extends ListBase implements IFocusManagerComponent /** * @private * Used internally to specify whether the selectedIndices changed programmatically or due to - * user interaction. - * + * user interaction. + * + * @param value the new indices. * @param dispatchChangeEvent if true, the component will dispatch a "change" event if the * value has changed. Otherwise, it will dispatch a "valueCommit" event. * @@ -2011,7 +2012,7 @@ public class List extends ListBase implements IFocusManagerComponent (mouseDownObject is DisplayObjectContainer && DisplayObjectContainer(mouseDownObject).contains(event.target as DisplayObject))); - // check to make sure they clciked on an item and selection should change + // check to make sure they clicked on an item and selection should change if (selectionChange) { // now handle the cases where the item is being selected or de-selected
