File: pod-fixes.patch

package info (click to toggle)
libdbix-class-perl 0.08010-2
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 2,052 kB
  • ctags: 1,064
  • sloc: perl: 10,536; sql: 225; makefile: 45
file content (76 lines) | stat: -rw-r--r-- 2,317 bytes parent folder | download
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
Author: gregor herrmann <gregoa@debian.org>
Description: fix several pod errors
Bug: #478335

--- libdbix-class-perl.orig/lib/DBIx/Class/Manual/Troubleshooting.pod
+++ libdbix-class-perl/lib/DBIx/Class/Manual/Troubleshooting.pod
@@ -47,7 +47,7 @@
 
 L<DBI> version 1.50 and L<DBD::Pg> 1.43 are known to work.
 
-=head2 ... Can't locate object method "source_name" via package ...
+=head2 Can't locate object method "source_name" via package
 
 There's likely a syntax error in the table class referred to elsewhere
 in this error message.  In particular make sure that the package
--- libdbix-class-perl.orig/lib/DBIx/Class/Storage/TxnScopeGuard.pm
+++ libdbix-class-perl/lib/DBIx/Class/Storage/TxnScopeGuard.pm
@@ -46,7 +46,7 @@
 
 =head1 NAME
 
-DBIx::Class::Storage::TxnScopeGuard
+DBIx::Class::Storage::TxnScopeGuard - L<Scope::Guard>-like objects
 
 =head1 SYNOPSIS
 
--- libdbix-class-perl.orig/lib/DBIx/Class/ResultSourceHandle.pm
+++ libdbix-class-perl/lib/DBIx/Class/ResultSourceHandle.pm
@@ -19,7 +19,7 @@
 
 =head1 NAME
 
-DBIx::Class::ResultSourceHandle
+DBIx::Class::ResultSourceHandle - remove link between Rows/ResultSets and source objects
 
 =head1 DESCRIPTION
 
--- libdbix-class-perl.orig/lib/DBIx/Class/ResultClass/HashRefInflator.pm
+++ libdbix-class-perl/lib/DBIx/Class/ResultClass/HashRefInflator.pm
@@ -5,7 +5,7 @@
 
 =head1 NAME
 
-DBIx::Class::ResultClass::HashRefInflator
+DBIx::Class::ResultClass::HashRefInflator - access data without objects
 
 =head1 SYNOPSIS
 
--- libdbix-class-perl.orig/lib/DBIx/Class/Relationship/BelongsTo.pm
+++ libdbix-class-perl/lib/DBIx/Class/Relationship/BelongsTo.pm
@@ -72,6 +72,14 @@
   return 1;
 }
 
+=head1 NAME
+
+DBIx::Class::Relationship::BelongsTo - create relationship between classes on foreign keys
+
+=head1 SEE ALSO
+
+L<DBIx::Class::Relationship>
+
 =head1 AUTHORS
 
 Alexander Hartmaier <Alexander.Hartmaier@t-systems.at>
--- libdbix-class-perl.orig/lib/DBIx/Class/Manual/Cookbook.pod
+++ libdbix-class-perl/lib/DBIx/Class/Manual/Cookbook.pod
@@ -506,7 +506,7 @@
 module.
 
 To make an object stringify itself as a single column, use something
-like this (replace C<foo> with the column/method of your choice):
+like this (replace C<name> with the column/method of your choice):
 
   use overload '""' => sub { shift->name}, fallback => 1;