diff options
author | Dries Buytaert <dries@buytaert.net> | 2009-01-08 18:57:32 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2009-01-08 18:57:32 +0000 |
commit | 00b9dd417058d773be11088318ac467839166e78 (patch) | |
tree | 8e316645c072b1ed3bc49d8e83c7df10dd584242 | |
parent | 3680da37a0cc1ebcc5c97d48ede21a3fc32ecee9 (diff) | |
download | brdo-00b9dd417058d773be11088318ac467839166e78.tar.gz brdo-00b9dd417058d773be11088318ac467839166e78.tar.bz2 |
- Patch #356116 by Jody Lynn: fixed typo.
-rw-r--r-- | modules/simpletest/simpletest.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/simpletest/simpletest.module b/modules/simpletest/simpletest.module index 4c07e294c..bb4daf9c7 100644 --- a/modules/simpletest/simpletest.module +++ b/modules/simpletest/simpletest.module @@ -231,7 +231,7 @@ function theme_simpletest_test_table($table) { $element = &$table[$key]; $row = array(); - // Make the class name safe for output on the pace by replacing all + // Make the class name safe for output on the page by replacing all // non-word/decimal characters with a dash (-). $test_class = strtolower(trim(preg_replace("/[^\w\d]/", "-", $key))); |