summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
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.