Doc
diff --git a/user_guide_src/source/helpers/path_helper.rst b/user_guide_src/source/helpers/path_helper.rst
index 6efd93c..4a22528 100644
--- a/user_guide_src/source/helpers/path_helper.rst
+++ b/user_guide_src/source/helpers/path_helper.rst
@@ -33,8 +33,8 @@
 	$non_existent_file = '/path/to/non-exist-file.txt'; 
 	echo set_realpath($non_existent_file, TRUE); // returns an error, as the path could not be resolved  
 	echo set_realpath($non_existent_file, FALSE); // returns "/path/to/non-exist-file.txt"   
-	$directory = '/etc/passwd'; 
-	echo set_realpath($directory); // returns "/etc/passwd/"  
+	$directory = '/etc/php5'; 
+	echo set_realpath($directory); // returns "/etc/php5/"  
 	$non_existent_directory = '/path/to/nowhere'; 
 	echo set_realpath($non_existent_directory, TRUE); // returns an error, as the path could not be resolved  
 	echo set_realpath($non_existent_directory, FALSE); // returns "/path/to/nowhere"   
\ No newline at end of file