@@ -843,20 +843,20 @@ var Item = this.Item = Base.extend({
843843 *
844844 * @name Item#removeChildren
845845 * @function
846- * @return {Array } an array containing the removed items
846+ * @return {Item[] } an array containing the removed items
847847 */
848848 /**
849849 * Removes all of the item's {@link #children} (if any).
850850 *
851- * @return {Array } an array containing the removed items
851+ * @return {Item[] } an array containing the removed items
852852 */
853853 /**
854854 * Removes the children from the specified {@code from} index to the
855855 * {@code to} index from the parent's {@link #children} array.
856856 *
857857 * @param {Number } from the beginning index, inclusive
858858 * @param {Number } [to=children.length] the ending index, exclusive
859- * @return {Array } an array containing the removed items
859+ * @return {Item[] } an array containing the removed items
860860 */
861861 removeChildren : function ( from , to ) {
862862 if ( ! this . _children )
@@ -1433,7 +1433,7 @@ var Item = this.Item = Base.extend({
14331433 * Transform the item.
14341434 *
14351435 * @param {Matrix } matrix
1436- * @param {Array } flags Array of any of the following: 'objects', 'children',
1436+ * @param {String[] } flags Array of any of the following: 'objects', 'children',
14371437 * 'fill-gradients', 'fill-patterns', 'stroke-patterns', 'lines'.
14381438 * Default: ['objects', 'children']
14391439 */
0 commit comments