Commit d4005861 authored by Steve Müller's avatar Steve Müller

Merge pull request #695 from fabschurt/fix-doc-typo

[Documentation] Add missing quotes at the end of literal strings
parents 50557fc0 dde324c8
...@@ -307,7 +307,7 @@ Prepare a given SQL statement and return the ...@@ -307,7 +307,7 @@ Prepare a given SQL statement and return the
array( array(
0 => array( 0 => array(
'username' => 'jwage', 'username' => 'jwage',
'password' => 'changeme 'password' => 'changeme'
) )
) )
*/ */
...@@ -344,7 +344,7 @@ parameters to the execute method, then returning the statement: ...@@ -344,7 +344,7 @@ parameters to the execute method, then returning the statement:
/* /*
array( array(
0 => 'jwage', 0 => 'jwage',
1 => 'changeme 1 => 'changeme'
) )
*/ */
...@@ -367,7 +367,7 @@ Execute the query and fetch all results into an array: ...@@ -367,7 +367,7 @@ Execute the query and fetch all results into an array:
array( array(
0 => array( 0 => array(
'username' => 'jwage', 'username' => 'jwage',
'password' => 'changeme 'password' => 'changeme'
) )
) )
*/ */
...@@ -385,7 +385,7 @@ Numeric index retrieval of first result row of the given query: ...@@ -385,7 +385,7 @@ Numeric index retrieval of first result row of the given query:
/* /*
array( array(
0 => 'jwage', 0 => 'jwage',
1 => 'changeme 1 => 'changeme'
) )
*/ */
...@@ -412,7 +412,7 @@ Retrieve assoc row of the first result row. ...@@ -412,7 +412,7 @@ Retrieve assoc row of the first result row.
/* /*
array( array(
'username' => 'jwage', 'username' => 'jwage',
'password' => 'changeme 'password' => 'changeme'
) )
*/ */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment