diff options
author | Phil Sturgeon <email@philsturgeon.co.uk> | 2011-09-03 19:20:50 +0200 |
---|---|---|
committer | Phil Sturgeon <email@philsturgeon.co.uk> | 2011-09-03 19:20:50 +0200 |
commit | 2eb2557bf1c438d8fb7d612dbb76c6676eaec4d6 (patch) | |
tree | 740d3cabe5e51f18578a72abf6e13e62fba9eb62 /system/language/english | |
parent | 7b5e924f10273af9bfb80ad251ea354a2141e95a (diff) | |
parent | 87db1b7056ae2b964f13a8e3cc915b1bce8959d5 (diff) |
Merge pull request #379 from tomcode/language-set-typos
Changed up to down for down method error line
Diffstat (limited to 'system/language/english')
-rw-r--r-- | system/language/english/migration_lang.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/language/english/migration_lang.php b/system/language/english/migration_lang.php index 4763ca243..94cb882fb 100644 --- a/system/language/english/migration_lang.php +++ b/system/language/english/migration_lang.php @@ -5,7 +5,7 @@ $lang['migration_not_found'] = "This migration could not be found."; $lang['migration_multiple_version'] = "This are multiple migrations with the same version number: %d."; $lang['migration_class_doesnt_exist'] = "The migration class \"%s\" could not be found."; $lang['migration_missing_up_method'] = "The migration class \"%s\" is missing an 'up' method."; -$lang['migration_missing_down_method'] = "The migration class \"%s\" is missing an 'up' method."; +$lang['migration_missing_down_method'] = "The migration class \"%s\" is missing a 'down' method."; $lang['migration_invalid_filename'] = "Migration \"%s\" has an invalid filename."; |