Skip to content

Commit

Permalink
removes one of the plugins'
Browse files Browse the repository at this point in the history
  • Loading branch information
justinbmeyer committed Oct 17, 2016
1 parent 9f40f50 commit 267379b
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions docs/construct.md
Expand Up @@ -66,7 +66,7 @@ var Animal = Construct.extend({
});
```

For more information on deciding when to use [can-construct::setup setup] or [can-construct::init init]
For more information on deciding when to use [can-construct::setup setup] or [can-construct::init init]
see the bottom of the [can-construct::setup setup] documentation.

You can make instances of your object by calling your constructor function with the `new` keyword. When an object is created, the [can-construct::init init]
Expand All @@ -80,7 +80,6 @@ panther instanceof Animal; // true

## Plugins

There are two plugins available to help make using `can-construct` even simpler.
There are plugins available to help make using `can-construct` even simpler.

- [can-construct-super] allows you to easily call base methods by making `this._super` available in inherited methods.
- [can-construct-proxy] creates a static callback function that sets the value of `this` to an instance of the constructor function.

0 comments on commit 267379b

Please sign in to comment.