From fcdb612e83043f0129ed7efa8ee1265b5cc64635 Mon Sep 17 00:00:00 2001 From: irc-html Date: Sat, 12 Jan 2002 16:13:51 +0000 Subject: [PATCH] spelling errors git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@67641 c90b9560-bf6c-de11-be94-00142212c4b1 --- functions/dbplus.xml | 20 ++++++++++---------- functions/dio.xml | 6 +++--- functions/errorfunc.xml | 10 +++++----- 3 files changed, 18 insertions(+), 18 deletions(-) diff --git a/functions/dbplus.xml b/functions/dbplus.xml index 3b63fb736c..67c774620d 100644 --- a/functions/dbplus.xml +++ b/functions/dbplus.xml @@ -1,5 +1,5 @@ - + DB++ Functions DB++ @@ -28,8 +28,8 @@
Requirements - You need the developement libraries and header files included in - every db++ installaion archive. Concept asa provides additional documentation and configure looks for the client libraries and - header files under the default pathes + header files under the default paths /usr/dbplus, /usr/local/dbplus and /opt/dblus. If you have installed db++ in a @@ -301,7 +301,7 @@ This function will add a tuple to a relation. The tuple data is an array of attribute/value pairs to be inserted into the given - relation. After successfull execution the + relation. After successful execution the tuple array will contain the complete data of the newly created tuple, including all implicitly set domain fields like sequences. @@ -350,7 +350,7 @@ Further information on the AQL A... Query Language is provided in - the opriginal db++ manual. + the original db++ manual. @@ -692,7 +692,7 @@ &warn.experimental.func; dbplus_getlock will request a write lock on - the speified tuple. It will return zero on + the specified tuple. It will return zero on success or a non-zero error code, especially DBPLUS_ERR_WLOCKED, on failure. @@ -873,7 +873,7 @@ On success a relation file resource (cursor) is returned which must - be used in any subsequent commanads referencing the relation. + be used in any subsequent commands referencing the relation. Failure leads to a zero return value, the actual error code may be asked for by calling dbplus_errno. @@ -972,7 +972,7 @@ strings, but it is recommended to use an array). A domain description string consists of a domain name unique to this relation, a slash and a type specification character. See the - db++ documentatiion, especially the dbcreate(1) manpage, for a + db++ documentation, especially the dbcreate(1) manpage, for a description of available type specifiers and their meanings. @@ -1123,7 +1123,7 @@ &warn.experimental.func; dbplus_ropen will open the relation - file localy for quick access without any + file locally for quick access without any client/server overhead. Access is read only and only dbplus_current and dbplus_next may be applied to the returned diff --git a/functions/dio.xml b/functions/dio.xml index b73e492894..8ccf220d1a 100644 --- a/functions/dio.xml +++ b/functions/dio.xml @@ -1,5 +1,5 @@ - + Direct IO functions DIO functions @@ -42,7 +42,7 @@ dio_open opens a file and returns a new file - descriptor for it, or -1 if any error occured. If + descriptor for it, or -1 if any error occurred. If flags is O_CREAT, optional third parameter mode will set the mode of the file (creation permissions). The flags @@ -377,7 +377,7 @@ The function dio_close closes the - filedescriptor resource. + file descriptor resource. diff --git a/functions/errorfunc.xml b/functions/errorfunc.xml index c18dd4a6c3..120f6440a5 100644 --- a/functions/errorfunc.xml +++ b/functions/errorfunc.xml @@ -1,5 +1,5 @@ - + Error Handling and Logging Functions Errors and Logging @@ -332,14 +332,14 @@ error_reporting (E_ALL); // New syntax for PHP 3/4 The user function needs to accept 2 parameters: the error code, and a string describing the error. From PHP 4.0.2, an additional 3 optional - parameters are supplied: the filename in which the error occured, the - line number in which the error occured, and the context in which the - error occured (an array that points to the active symbol table at the + parameters are supplied: the filename in which the error occurred, the + line number in which the error occurred, and the context in which the + error occurred (an array that points to the active symbol table at the point the error occurred). The example below shows the handling of - internal execptions by triggering errors and handling them with a user + internal exceptions by triggering errors and handling them with a user defined function: