From: Bernd Bleßmann Date: Thu, 17 Sep 2015 09:32:15 +0000 (+0200) Subject: Typos in POD. X-Git-Tag: release-3.4.1~735 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=70e382870c7675c0ce054579e80336d6349e7fe9;p=kivitendo-erp.git Typos in POD. --- diff --git a/SL/SessionFile.pm b/SL/SessionFile.pm index bf6c313dc..7536b56d3 100644 --- a/SL/SessionFile.pm +++ b/SL/SessionFile.pm @@ -153,7 +153,7 @@ Returns the full relative file name associated with this instance. If it has been created for "customer.csv" then the value returned might be C. -=item C +=item C Opens the file_name given at creation with the given parameters. diff --git a/SL/SessionFile/Random.pm b/SL/SessionFile/Random.pm index 366baf439..6a1800ef1 100644 --- a/SL/SessionFile/Random.pm +++ b/SL/SessionFile/Random.pm @@ -37,19 +37,20 @@ SL::SessionFile::Random - SessionFile with a random name use SL::SessionFile::Random; - # Create a session file named "customer.csv" (relative names only) - my $sfile = SL::SessionFile::Random->new("w"); + # Create a session file with a unique random name + my $sfile = SL::SessionFile::Random->new(mode => "w"); $sfile->fh->print("col1;col2;col3\n" . "value1;value2;value3\n"); $sfile->fh->close; =head1 DESCRIPTION -This modules gives you a random file in the current session cache that is guaranteed to be unique +This modules gives you a random file in the current session cache that is +guaranteed to be unique. =head1 FUNCTIONS -same as SL::SessioNFile +same as SL::SessionFile =head1 BUGS