From 404b75e0f69732afb69c405393a77c514ff1ca43 Mon Sep 17 00:00:00 2001 From: Richard Quadling Date: Sat, 19 Apr 2008 09:59:35 +0000 Subject: [PATCH] Fix typo (bug 44781) git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@257891 c90b9560-bf6c-de11-be94-00142212c4b1 --- reference/mysql/functions/mysql-free-result.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reference/mysql/functions/mysql-free-result.xml b/reference/mysql/functions/mysql-free-result.xml index c85372e586..b270d9f0aa 100644 --- a/reference/mysql/functions/mysql-free-result.xml +++ b/reference/mysql/functions/mysql-free-result.xml @@ -1,5 +1,5 @@ - + mysql_free_result @@ -59,7 +59,7 @@ if (!$result) { echo 'Could not run query: ' . mysql_error(); exit; } -/* Use the result, assuming we're done with it afterwords */ +/* Use the result, assuming we're done with it afterwards */ $row = mysql_fetch_assoc($result); /* Now we free up the result and continue on with our script */