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

Commit 26de0c8

Browse files
committed
Merge pull request #4 from chronon/fixing-readme-typo
Changing $actAs to $actsAs in README
2 parents aa9edd8 + 96c1e9b commit 26de0c8

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ After that, go to the model where you want to use the plugin and attach the
8181
behavior like this:
8282

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

9393
```php
94-
public $actAs = array(
94+
public $actsAs = array(
9595
'Slugomatic.Slugomatic' => array(
9696
'fields' => 'name'
9797
)
@@ -115,7 +115,7 @@ this:
115115
When configuring the behavior, you have the following options:
116116

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

0 commit comments

Comments
 (0)