File: fix-spelling-error-in-manpage.patch

package info (click to toggle)
libdata-table-perl 1.77-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 564 kB
  • sloc: perl: 2,084; makefile: 2
file content (23 lines) | stat: -rw-r--r-- 1,670 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Description: Fix spelling error in manpage
Author: Lucas Kanashiro <kanashiro.duarte@gmail.com>
Last-Updated: 2016-05-09
Forwarded: https://rt.cpan.org/Ticket/Display.html?id=112686
Bug: https://rt.cpan.org/Ticket/Display.html?id=112686

--- a/Table.pm
+++ b/Table.pm
@@ -2659,9 +2659,12 @@ Conventions for local variables:
 create a new table.
 It returns a table object upon success, undef otherwise.
 $data: points to the spreadsheet data.
-$header: points to an array of column names. Before version 1.69, a column name must have at least one non-digit character. Since version 1.69, this is relaxed. Although integer and numeric column names can now be accepted, when accessing a column by integer, it is first interpreted as a column name.
+$header: points to an array of column names. Before version 1.69, a column name must have at least one non-digit character. Since version 1
+.69, this is relaxed. Although integer and numeric column names can now be accepted, when accessing a column by integer, it is first interpr
+eted as a column name.
 $type: 0 or 1 for row-based/column-based spreadsheet. 
-$enforceCheck: 1/0 to turn on/off initial checking on the size of each row/column to make sure the data argument indeed points to a valid structure.
+$enforceCheck: 1/0 to turn on/off initial checking on the size of each row/column to make sure the data argument indeed points to a valid s
+tructure.
 In 1.63, we introduce constants Data::Table::ROW_BASED and Data::Table::COL_BASED as synonyms for $type.  To create an empty Data::Table, use new Data::Table([], [], Data::Table::ROW_BASED);
 
 =item table table::subTable ($rowIdcsRef, $colIDsRef, $arg_ref)