Update documentation a bit.

This commit is contained in:
Jürg Lehni 2012-10-05 16:09:15 -07:00
parent 297daaf577
commit 77296c4640

View file

@ -81,9 +81,9 @@ var PathItem = this.PathItem = Item.extend(/** @lends PathItem# */{
/** /**
* {@grouptitle Postscript Style Drawing Commands} * {@grouptitle Postscript Style Drawing Commands}
* *
* If called on a {@link CompoundPath}, a new {@link Path} is created as a * On a normal empty {@link Path}, the point is simply added as the path's
* child and the point is added as its first segment. On a normal empty * first segment. If called on a {@link CompoundPath}, a new {@link Path} is
* {@link Path}, the point is simply added as its first segment. * created as a child and the point is added as its first segment.
* *
* @name PathItem#moveTo * @name PathItem#moveTo
* @function * @function
@ -282,12 +282,12 @@ var PathItem = this.PathItem = Item.extend(/** @lends PathItem# */{
* {@grouptitle Relative Drawing Commands} * {@grouptitle Relative Drawing Commands}
* *
* If called on a {@link CompoundPath}, a new {@link Path} is created as a * If called on a {@link CompoundPath}, a new {@link Path} is created as a
* child and the point is added as its first segment relative to the * child and a point is added as its first segment relative to the
* position of the last segment of the current path. * position of the last segment of the current path.
* *
* @name PathItem#moveBy * @name PathItem#moveBy
* @function * @function
* @param {Point} point * @param {Point} vector
*/ */
/** /**