From cda60137e182492289e00f67393d596f1eae61ae Mon Sep 17 00:00:00 2001 From: Sean Coates Date: Sun, 8 Aug 2004 17:30:17 +0000 Subject: [PATCH] grammar git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@165775 c90b9560-bf6c-de11-be94-00142212c4b1 --- features/safe-mode.xml | 8 ++++---- reference/misc/functions/eval.xml | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/features/safe-mode.xml b/features/safe-mode.xml index f59a12e915..6735cc18a2 100644 --- a/features/safe-mode.xml +++ b/features/safe-mode.xml @@ -1,5 +1,5 @@ - + Safe Mode @@ -207,9 +207,9 @@ The special value . - indicates that the working directory of the script will be used as - base-directory. This is however little dangerous as the working directory - of the script can be easily changed by chdir. + indicates that the working directory of the script will be used as the + base-directory. This is, however, a little dangerous as the working directory + of the script can easily be changed with chdir. Under Windows, separate the directories with a semicolon. On all diff --git a/reference/misc/functions/eval.xml b/reference/misc/functions/eval.xml index b2ec2d5224..50aa326b17 100644 --- a/reference/misc/functions/eval.xml +++ b/reference/misc/functions/eval.xml @@ -1,5 +1,5 @@ - + @@ -36,7 +36,7 @@ the string immediately. As of PHP 4, eval returns &null; unless return is called in the evaluated code, in which case the value passed to return is - returned. In case of fatal error in evaluated code, + returned. In case of a fatal error in the evaluated code, eval returns &false;. In PHP 3, eval does not return a value.