Skip to content
This repository has been archived by the owner on Oct 20, 2023. It is now read-only.

Commit

Permalink
Merge pull request #67 from burzum/develop
Browse files Browse the repository at this point in the history
Fixing typos in the documentation
  • Loading branch information
Florian Krämer committed Apr 15, 2014
2 parents 34ec24c + b9bf2df commit 2bba473
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Docs/Documentation/Overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ Overview

The **Tags** plugin includes the TaggableBehavior that allows you to simply tag everything.

It saves all tags in a sginle tags table and connects any kind of records to them through the tagged table.
It saves all tags in a single tags table and connects any kind of records to them through the tagged table.
5 changes: 3 additions & 2 deletions Docs/Tutorials/Find-Tagged-Objects.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ Find Tagged Objects

The Tagged model has a custom `_findTagged()` method to find or paginate objects tagged with a given tag.

h2. Find usage examples
Find usage examples
-------------------

* To find all Articles having at least one Tag the call would be: `$this->Tagged->find('tagged', array('model' => 'Article'));`
* To find all Articles tagged _cakephp_ the call would be: `$this->Tagged->find('tagged', array('by' => 'cakephp', 'model' => 'Article'));`
Expand All @@ -30,4 +31,4 @@ public function index() {
$this->set('recipes', $recipes);
$this->set('tags', $this->Recipe->Tagged->find('cloud', array('limit' => 10)));
}
```
```
6 changes: 3 additions & 3 deletions Docs/Tutorials/Quick-Start.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Qick Start
==========
Quick Start
===========

Make sure the plugin is loaded in the application.

Expand All @@ -25,4 +25,4 @@ $this->Form->input('tags');

You can now save comma separated tags in this field.

That's all you need if you want to use the plugin out of the box without customization.
That's all you need if you want to use the plugin out of the box without customization.

0 comments on commit 2bba473

Please sign in to comment.