Skip to content
This repository has been archived by the owner on Dec 1, 2019. It is now read-only.

Commit

Permalink
Merge pull request #4 from chronon/fixing-readme-typo
Browse files Browse the repository at this point in the history
Changing $actAs to $actsAs in README
  • Loading branch information
eberfreitas committed Mar 9, 2015
2 parents aa9edd8 + 96c1e9b commit 26de0c8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ After that, go to the model where you want to use the plugin and attach the
behavior like this:

```php
public $actAs = array(
public $actsAs = array(
'Slugomatic.Slugomatic'
);
```
Expand All @@ -91,7 +91,7 @@ created using the data from that field. If you have a different field name, just
configure the behavior like this:

```php
public $actAs = array(
public $actsAs = array(
'Slugomatic.Slugomatic' => array(
'fields' => 'name'
)
Expand All @@ -115,7 +115,7 @@ this:
When configuring the behavior, you have the following options:

```php
public $actAs = array(
public $actsAs = array(
'Slugomatic.Slugomatic' => array(
'fields' => 'title',
'scope' => false,
Expand Down Expand Up @@ -200,4 +200,4 @@ awesome boilerplate for
[travis-ci integration](https://github.com/FriendsOfCake/travis). And finally,
thanks to [Jose Diaz-Gonzalez](http://josediazgonzalez.com/) and his
[CakeAdvent series](http://josediazgonzalez.com/2013/12/01/testing-your-cakephp-plugins-with-travis/)
which helped me to create this plugin properly.
which helped me to create this plugin properly.

0 comments on commit 26de0c8

Please sign in to comment.