1
0
Fork 0
mirror of https://github.com/Oreolek/kohana-migrations.git synced 2024-06-16 15:01:08 +03:00

Fix typos

This commit is contained in:
Andrew Hutchings 2011-01-07 14:12:33 +08:00 committed by Matt Button
parent dc006ee129
commit d85ba5037b
3 changed files with 7 additions and 7 deletions

View file

@ -2,7 +2,7 @@
*NOTE: Minion is currently in a beta state, please report any issues in the issue tracker*
Minion is a module for running database migrations located in the kohana cascading filesystem, but it also provides a useful framework for creating cli based tasks.
Minion is a module for running database migrations located in the Kohana cascading filesystem, but it also provides a useful framework for creating cli based tasks.
The original "need" behind Minion was the lack of a good db migrations system, capable of selecting migrations
from multiple locations (i.e. different modules).
@ -13,7 +13,7 @@ The system is inspired by ruckusing, which had a nice system for defining tasks
* [kohana-database](https://github.com/kohana/database)
## Compatability
## Compatibility
Minion should be compatible with both Kohana 3.0.x and 3.1.x
@ -63,7 +63,7 @@ Feel free to contribute tests(!), they can be found in the `tests/minion` direct
## License
This is licensed under the [same license as kohana](http://kohanaframework.org/license).
This is licensed under the [same license as Kohana](http://kohanaframework.org/license).
This project is not endorsed by the Kohana Framework project.

View file

@ -42,7 +42,7 @@
*
* --quiet
*
* Suppress all unnessacery output. If --dry-run is enabled then only dry run
* Suppress all unnecessary output. If --dry-run is enabled then only dry run
* SQL will be output
*
* @author Matt Button <matthew@sigswitch.com>
@ -51,7 +51,7 @@ class Minion_Task_Db_Migrate extends Minion_Task
{
/*
* Th' default direction for migrations, TRUE = up, FALSE = down
* The default direction for migrations, TRUE = up, FALSE = down
* @var boolean
*/
protected $_default_direction = TRUE;
@ -113,7 +113,7 @@ class Minion_Task_Db_Migrate extends Minion_Task
}
/**
* Parses a comma delimted set of locations and returns an array of them
* Parses a comma delimited set of locations and returns an array of them
*
* @param string Comma delimited string of locations
* @return array Locations

View file

@ -16,7 +16,7 @@ class <?php echo $class; ?> extends Minion_Migration_Base {
}
/**
* Run queries need to remove this migration
* Run queries needed to remove this migration
*
* @param Kohana_Database Database connection
*/