1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
Description: Fix spelling error in manpage
Author: Lucas Kanashiro <kanashiro.duarte@gmail.com>
Last-Updated: 2016-02-04
Forwarded: https://rt.cpan.org/Ticket/Display.html?id=111779
Bug: https://rt.cpan.org/Ticket/Display.html?id=111778
--- a/lib/Text/CSV/Encoded.pm
+++ b/lib/Text/CSV/Encoded.pm
@@ -491,7 +491,7 @@ And in C<combine> and C<print>, it is as
If C<encoding> is not specified or is set with false value (C<undef>),
the field data will be regarded as Unicode (when L<Text::CSV::Encoded::Coder::Encode> is used).
- # ex.) a souce code is encoded in euc-jp, and print to stdout in shiftjis.
+ # ex.) a source code is encoded in euc-jp, and print to stdout in shiftjis.
@fields = ( .... );
$csv->encoding('euc-jp')
->encoding_to_combine('shiftjis') # same as encoding_out
@@ -637,7 +637,7 @@ and then it might guess the encoding fro
It is important to remember the guessing feature is not always successful.
Or, the method can be applied to C<encoding>.
-For exmaple, you want to convert data from Microsoft Excel to CSV.
+For example, you want to convert data from Microsoft Excel to CSV.
use Text::CSV::Encoded coder_class => 'Text::CSV::Encoded::Coder::EncodeGuess';
use Spreadsheet::ParseExcel;
|