diff options
Diffstat (limited to 'modules/simpletest/simpletest.module')
-rw-r--r-- | modules/simpletest/simpletest.module | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/simpletest/simpletest.module b/modules/simpletest/simpletest.module index 6711337ba..53acb6dd2 100644 --- a/modules/simpletest/simpletest.module +++ b/modules/simpletest/simpletest.module @@ -43,7 +43,7 @@ function simpletest_perm() { } /** - * Implemenation of hook_theme(). + * Implementation of hook_theme(). */ function simpletest_theme() { return array( @@ -520,7 +520,7 @@ function simpletest_clean_environment() { } /** - * Removed prefixed talbes from the database that are left over from crashed tests. + * Removed prefixed tables from the database that are left over from crashed tests. */ function simpletest_clean_database() { $tables = db_find_tables(Database::getActiveConnection()->prefixTables('{simpletest}') . '%'); @@ -565,7 +565,7 @@ function simpletest_clean_temporary_directories() { } /** - * Remove all files from specified firectory and then remove directory. + * Remove all files from specified directory and then remove directory. * * @param string $path Directory path. */ |