diff options
author | Yuri Chornoivan <yurchor@ukr.net> | 2021-02-21 10:01:09 +0200 |
---|---|---|
committer | Yuri Chornoivan <yurchor@ukr.net> | 2021-02-21 10:01:09 +0200 |
commit | 76be91ef43b2ab5eba5d5cf0c27b20cba9440a00 (patch) | |
tree | dad3b3c1834701322e9b70a462e37494963ffd2a /test | |
parent | 37fe60c5f6f08473eae0377f5fcf1cbb1cb9d373 (diff) | |
download | www-76be91ef43b2ab5eba5d5cf0c27b20cba9440a00.tar www-76be91ef43b2ab5eba5d5cf0c27b20cba9440a00.tar.gz www-76be91ef43b2ab5eba5d5cf0c27b20cba9440a00.tar.bz2 www-76be91ef43b2ab5eba5d5cf0c27b20cba9440a00.tar.xz www-76be91ef43b2ab5eba5d5cf0c27b20cba9440a00.zip |
Fix minor typo
Diffstat (limited to 'test')
-rw-r--r-- | test/lang.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/lang.php b/test/lang.php index 15e0ef28c..4c0c554c3 100644 --- a/test/lang.php +++ b/test/lang.php @@ -17,7 +17,7 @@ if ($delete_feed_cache) { array_map('unlink', glob($feed_cache_patern)); foreach (glob($feed_cache_patern) as $filename) { - echo "It seems that deleting feed cache didn't work as some files listed bellow are still there!\n\n"; + echo "It seems that deleting feed cache didn't work as some files listed below are still there!\n\n"; echo "$filename, uid: " . fileowner($filename) . "\n"; } } @@ -33,7 +33,7 @@ if ($delete_nav_cache) { array_map('unlink', glob($nav_cache_patern)); foreach (glob($nav_cache_patern) as $filename) { - echo "It seems that deleting navigation cache didn't work as some files listed bellow are still there!\n\n"; + echo "It seems that deleting navigation cache didn't work as some files listed below are still there!\n\n"; echo "$filename, uid: " . fileowner($filename) . "\n"; } } |