Skip to content

Commit 6e192b6

Browse files
author
H.Merijn Brand - Tux
committed
Missing comma in code example in docs
1 parent bf88384 commit 6e192b6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

DBI.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7078,7 +7078,7 @@ For example:
70787078
my $sth2 = $dbh->prepare( $sth1->{Statement} );
70797079
my $ParamValues = $sth1->{ParamValues} || {};
70807080
my $ParamTypes = $sth1->{ParamTypes} || {};
7081-
$sth2->bind_param($_, $ParamValues->{$_} $ParamTypes->{$_})
7081+
$sth2->bind_param($_, $ParamValues->{$_}, $ParamTypes->{$_})
70827082
for keys %{ {%$ParamValues, %$ParamTypes} };
70837083
$sth2->execute();
70847084

0 commit comments

Comments
 (0)