mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-22 23:39:59 -05:00
Fix @extends tags in documentation: Only the immediately following class is required.
This commit is contained in:
parent
bcff3932b6
commit
cb463b74f5
4 changed files with 0 additions and 4 deletions
|
@ -39,7 +39,6 @@ var Layer = this.Layer = Group.extend({
|
||||||
* {@link Project#layers}.
|
* {@link Project#layers}.
|
||||||
*
|
*
|
||||||
* @extends Group
|
* @extends Group
|
||||||
* @extends Item
|
|
||||||
* @constructs Layer
|
* @constructs Layer
|
||||||
*/
|
*/
|
||||||
initialize: function(items) {
|
initialize: function(items) {
|
||||||
|
|
|
@ -39,7 +39,6 @@ var CompoundPath = this.CompoundPath = PathItem.extend({
|
||||||
* {@link Item#children} list.
|
* {@link Item#children} list.
|
||||||
*
|
*
|
||||||
* @extends PathItem
|
* @extends PathItem
|
||||||
* @extends Item
|
|
||||||
*/
|
*/
|
||||||
initialize: function(paths) {
|
initialize: function(paths) {
|
||||||
this.base();
|
this.base();
|
||||||
|
|
|
@ -40,7 +40,6 @@ var Path = this.Path = PathItem.extend({
|
||||||
*
|
*
|
||||||
* @class The Path item represents a path in a Paper.js project.
|
* @class The Path item represents a path in a Paper.js project.
|
||||||
* @extends PathItem
|
* @extends PathItem
|
||||||
* @extends Item
|
|
||||||
* @constructs Path
|
* @constructs Path
|
||||||
*/
|
*/
|
||||||
initialize: function(segments) {
|
initialize: function(segments) {
|
||||||
|
|
|
@ -36,7 +36,6 @@ var PointText = this.PointText = TextItem.extend({
|
||||||
* characters contained in it.
|
* characters contained in it.
|
||||||
*
|
*
|
||||||
* @extends TextItem
|
* @extends TextItem
|
||||||
* @extends Item
|
|
||||||
*/
|
*/
|
||||||
initialize: function(point) {
|
initialize: function(point) {
|
||||||
this.base();
|
this.base();
|
||||||
|
|
Loading…
Reference in a new issue