aboutsummaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/perl/perl/fixes/time_piece_doc.diff
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-devtools/perl/perl/fixes/time_piece_doc.diff')
-rw-r--r--meta/recipes-devtools/perl/perl/fixes/time_piece_doc.diff30
1 files changed, 30 insertions, 0 deletions
diff --git a/meta/recipes-devtools/perl/perl/fixes/time_piece_doc.diff b/meta/recipes-devtools/perl/perl/fixes/time_piece_doc.diff
new file mode 100644
index 0000000000..3793e4848a
--- /dev/null
+++ b/meta/recipes-devtools/perl/perl/fixes/time_piece_doc.diff
@@ -0,0 +1,30 @@
+From 2f34b8acecfa25758eb31a541f019a6b2f1a24e0 Mon Sep 17 00:00:00 2001
+From: Dominic Hargreaves <dom@earth.li>
+Date: Sat, 30 Apr 2016 23:20:45 +0100
+Subject: Time::Piece: Improve documentation for add_months and add_years
+
+These methods don't act on the time of the object they are called from,
+so the previous documentation was open to misinterpretation.
+
+Bug: https://github.com/rjbs/Time-Piece/pull/22
+Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=817925
+Patch-Name: fixes/time_piece_doc.diff
+---
+ cpan/Time-Piece/Piece.pm | 4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/cpan/Time-Piece/Piece.pm b/cpan/Time-Piece/Piece.pm
+index 6dbf4d69c4..d3b62ce5fb 100644
+--- a/cpan/Time-Piece/Piece.pm
++++ b/cpan/Time-Piece/Piece.pm
+@@ -783,8 +783,8 @@ days, weeks and years in that delta, using the Time::Seconds API.
+ In addition to adding seconds, there are two APIs for adding months and
+ years:
+
+- $t->add_months(6);
+- $t->add_years(5);
++ $t = $t->add_months(6);
++ $t = $t->add_years(5);
+
+ The months and years can be negative for subtractions. Note that there
+ is some "strange" behaviour when adding and subtracting months at the