diff --git a/laravel/str.php b/laravel/str.php
index 81c52407..8e463ac5 100644
--- a/laravel/str.php
+++ b/laravel/str.php
@@ -8,9 +8,6 @@ class Str {
*
* // Convert a string to lowercase
* echo Str::lower('STOP YELLING');
- *
- * // Convert a UTF-8 string to lowercase
- * echo Str::lower('Τάχιστη');
*
*
* @param string $value
@@ -32,9 +29,6 @@ public static function lower($value)
*
* // Convert a string to uppercase
* echo Str::upper('speak louder');
- *
- * // Convert a UTF-8 string to uppercase
- * echo Str::upper('Τάχιστη');
*
*
* @param string $value
@@ -56,9 +50,6 @@ public static function upper($value)
*
* // Convert a string to title case
* echo Str::title('taylor otwell');
- *
- * // Convert a UTF-8 string to title case
- * echo Str::title('Τάχιστη αλώπηξ');
*
*
* @param string $value
@@ -80,9 +71,6 @@ public static function title($value)
*
* // Get the length of a string
* echo Str::length('taylor otwell');
- *
- * // Get the length of a UTF-8 string
- * echo Str::length('Τάχιστη αλώπηξ');
*
*
* @param string $value