Repository: flex-asjs Updated Branches: refs/heads/develop fe3fc18cd -> a233be03b
Some documentation glitches fixed. Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/a233be03 Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/a233be03 Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/a233be03 Branch: refs/heads/develop Commit: a233be03bf0321696783b0610a8a4da23c061298 Parents: fe3fc18 Author: yishayw <[email protected]> Authored: Tue Jan 31 10:09:37 2017 +0200 Committer: yishayw <[email protected]> Committed: Tue Jan 31 10:09:37 2017 +0200 ---------------------------------------------------------------------- .../src/main/flex/org/apache/flex/effects/CompoundEffect.as | 2 +- .../src/main/flex/org/apache/flex/effects/ICompoundEffect.as | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/a233be03/frameworks/projects/Effects/src/main/flex/org/apache/flex/effects/CompoundEffect.as ---------------------------------------------------------------------- diff --git a/frameworks/projects/Effects/src/main/flex/org/apache/flex/effects/CompoundEffect.as b/frameworks/projects/Effects/src/main/flex/org/apache/flex/effects/CompoundEffect.as index 93a8e14..ce6029a 100644 --- a/frameworks/projects/Effects/src/main/flex/org/apache/flex/effects/CompoundEffect.as +++ b/frameworks/projects/Effects/src/main/flex/org/apache/flex/effects/CompoundEffect.as @@ -29,7 +29,7 @@ package org.apache.flex.effects [DefaultProperty("children")] /** - * The ParallelStrand implements ICompoundEffect by dispatching events that should be handled by pluggable beads. + * CompoundEffect implements ICompoundEffect by dispatching events that should be handled by pluggable beads. * * @langversion 3.0 * @playerversion Flash 10.2 http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/a233be03/frameworks/projects/Effects/src/main/flex/org/apache/flex/effects/ICompoundEffect.as ---------------------------------------------------------------------- diff --git a/frameworks/projects/Effects/src/main/flex/org/apache/flex/effects/ICompoundEffect.as b/frameworks/projects/Effects/src/main/flex/org/apache/flex/effects/ICompoundEffect.as index 08fe7e9..e7e005c 100644 --- a/frameworks/projects/Effects/src/main/flex/org/apache/flex/effects/ICompoundEffect.as +++ b/frameworks/projects/Effects/src/main/flex/org/apache/flex/effects/ICompoundEffect.as @@ -55,9 +55,10 @@ package org.apache.flex.effects function addChild(c:IEffect):void; /** - * Add an effect to the parent. + * Add an effect to the parent at a certain position. * * @param c The subeffect to add. + * @param index The position where the subeffect is added. * * @langversion 3.0 * @playerversion Flash 10.2 @@ -104,7 +105,7 @@ package org.apache.flex.effects /** * Get an effect from the parent. * - * @param c The index of the subeffect. + * @param index The position of the subeffect. * * @langversion 3.0 * @playerversion Flash 10.2
