File: fix_pods.patch

package info (click to toggle)
libmarc-perl 1.07-6.1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 596 kB
  • sloc: perl: 3,525; makefile: 2
file content (87 lines) | stat: -rw-r--r-- 4,521 bytes parent folder | download | duplicates (3)
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
Description: Correct errors in POD
Author: Rene Mayorga <rmayorga@debian.org>
Forwarded: https://rt.cpan.org/Ticket/Display.html?id=95002
Last-Update: 2014-04-24
--- a/MARC.pm
+++ b/MARC.pm
@@ -768,7 +768,7 @@
 	    return;
 	}
 	open (OUT, "$args->{file}") || mycarp "Couldn't open file: $!";
-	#above quote is bad if {file} is tainted. Is probably unecessary.dgl.
+	#above quote is bad if {file} is tainted. Is probably unnecessary.dgl.
         binmode OUT;
 	print OUT $output;
 	close OUT || mycarp "Couldn't close file: $!";
@@ -2376,7 +2376,7 @@
 		$$rval = $usub;
 		$marcrec->field_updatehook($rvictim);
 
-		# The following line is unecessary for this class:
+		# The following line is unnecessary for this class:
 		# everything updates due to hard-coded ref
 		# relationships in the index.  Left so that subclasses
 		# can do their thing with less over-ruling.
@@ -2491,7 +2491,7 @@
 	    return;
 	}
 	open (OUT, $args->{file}) || mycarp "Couldn't open file: $!";
-	#above quote is bad if {file} is tainted. Is probably unecessary.dgl.
+	#above quote is bad if {file} is tainted. Is probably unnecessary.dgl.
         binmode OUT;
 	print OUT $output;
 	close OUT || mycarp "Couldn't close file: $!";
@@ -3073,7 +3073,7 @@
 
 =item *
 
-MARC -> URLS : This conversion will extract URLs from a batch of MARC records. The URLs are found in the 856 field, subfield u. The HTML page that is generated can then be used with link-checking software to determine which URLs need to be repaired. Hopefully library system vendors will soon support this activity soon and make this conversion unecessary!
+MARC -> URLS : This conversion will extract URLs from a batch of MARC records. The URLs are found in the 856 field, subfield u. The HTML page that is generated can then be used with link-checking software to determine which URLs need to be repaired. Hopefully library system vendors will soon support this activity soon and make this conversion unnecessary!
 
 =back
 
@@ -3110,7 +3110,7 @@
 
 If you do not get any response that means everything is OK! If you get an
 error like I<Can't locate method "use" via package MARC>.
-then Perl is not able to find MARC.pm--double check that the file copied
+then Perl is not able to find MARC.pm - double check that the file copied
 it into the right place during the install.
 
 =back
@@ -3731,7 +3731,7 @@
 
 =head2 updaterecord()
 
-The updaterecord() method is a more complete version of the preceeding sequence with error checking and the ability to split the update array into multiple addfield() commands when given repeating fields. It takes an array of key/value pairs, formatted like the output of getupdate(), and replaces/creates the field data. For repeated tags, a "\036" element is used to delimit data into separate addfield() commands. It returns the number of successful addfield() commands or C<undef> on failure.
+The updaterecord() method is a more complete version of the preceding sequence with error checking and the ability to split the update array into multiple addfield() commands when given repeating fields. It takes an array of key/value pairs, formatted like the output of getupdate(), and replaces/creates the field data. For repeated tags, a "\036" element is used to delimit data into separate addfield() commands. It returns the number of successful addfield() commands or C<undef> on failure.
 
     $repeats = $x->updaterecord($update246, @u246);	# same as above
 
@@ -3908,7 +3908,7 @@
 
 =head2 as_string()
 
-As_string() takes no paramaters and returns a (Unix) newline separated version of the record.
+As_string() takes no parameters and returns a (Unix) newline separated version of the record.
 
   Format is: $tag<SPACE>$i1$i2<SPACE>$subfields
   where $subfields are separated by "\c_" binary subfield indicators.
@@ -3919,7 +3919,7 @@
 
 =head2 from_string()
 
-From_string() takes a string paramater and updates the calling record's {array} information.
+From_string() takes a string parameter and updates the calling record's {array} information.
 It assumes the string is formatted like the output of as_string(). 
 
 =head1 EXAMPLES
@@ -4022,7 +4022,7 @@
 
 =head1 NOTES
 
-Please let us know if you run into any difficulties using MARC.pm--we'd be
+Please let us know if you run into any difficulties using MARC.pm - we'd be
 happy to try to help. Also, please contact us if you notice any bugs, or
 if you would like to suggest an improvement/enhancement. Email addresses 
 are listed at the bottom of this page.