summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorDamien Laniel <dlaniel@entrouvert.com>2007-06-14 17:40:47 +0000
committerDamien Laniel <dlaniel@entrouvert.com>2007-06-14 17:40:47 +0000
commit6a5f0479a14268ac080e6b942e3def0d8564fb56 (patch)
tree65a54c6efa3a8912fb0fe726f728f62968922718 /docs
parent55fa1788362f7c05ee5f889eb539741d0b0a19a7 (diff)
downloadlasso-6a5f0479a14268ac080e6b942e3def0d8564fb56.tar.gz
lasso-6a5f0479a14268ac080e6b942e3def0d8564fb56.tar.xz
lasso-6a5f0479a14268ac080e6b942e3def0d8564fb56.zip
fixed spelling mistake
Diffstat (limited to 'docs')
-rw-r--r--docs/lasso-book/writing-a-c-sp.txt2
-rw-r--r--docs/lasso-book/writing-a-php-sp.txt2
2 files changed, 2 insertions, 2 deletions
diff --git a/docs/lasso-book/writing-a-c-sp.txt b/docs/lasso-book/writing-a-c-sp.txt
index 8aa4e143..c8a82d7c 100644
--- a/docs/lasso-book/writing-a-c-sp.txt
+++ b/docs/lasso-book/writing-a-c-sp.txt
@@ -401,7 +401,7 @@ end of the single sign on profile.
Proper Error Checking
=====================
-Most Lasso functions returns 0 on success and a negative number on failure. It
+Most Lasso functions return 0 on success and a negative number on failure. It
is strongly advised to check this return code on each call.
::
diff --git a/docs/lasso-book/writing-a-php-sp.txt b/docs/lasso-book/writing-a-php-sp.txt
index 5dcaf246..d56f638f 100644
--- a/docs/lasso-book/writing-a-php-sp.txt
+++ b/docs/lasso-book/writing-a-php-sp.txt
@@ -370,7 +370,7 @@ and to set up the script to use it::
set_error_handler("userErrorHandler");
-Most Lasso functions returns 0 on success and a negative number on failure. It
+Most Lasso functions return 0 on success and a negative number on failure. It
is strongly advised to check this return code on each call. If the error raise a
PHP warning, the code resume after the call to the error handler function.