From 951580ceb4c08a9887f2ad1fe99292a1998b25a1 Mon Sep 17 00:00:00 2001 From: Paul Cochrane Date: Mon, 7 Sep 2015 12:55:07 +0200 Subject: [PATCH 1/3] Fix internal link to CALLING COMPONENTS section The full path to the section in the manual was needed in order to point to the correct section. The missing extra path caused the podchecker error: ERROR: unresolved internal link 'CALLING COMPONENTS' at line 210 in file ./lib/Mason/Component.pm --- lib/Mason/Component.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Mason/Component.pm b/lib/Mason/Component.pm index 6983e0cc..c7c7b829 100644 --- a/lib/Mason/Component.pm +++ b/lib/Mason/Component.pm @@ -207,7 +207,7 @@ L. =item args Returns the hashref of arguments passed to this component's constructor, e.g. -the arguments passed in a L. +the arguments passed in a L. =item cmeta From 8ddeece94a4a06abbde6a3c631c53d683b9407ce Mon Sep 17 00:00:00 2001 From: Paul Cochrane Date: Mon, 7 Sep 2015 12:56:43 +0200 Subject: [PATCH 2/3] Remove superfluous whitespace in pod link The extra whitespaced caused the podchecker warning: WARNING: ignoring trailing whitespace in link at line 57 in file ./lib/Mason/Plugin/LvalueAttributes.pm This change removes the warning. --- lib/Mason/Plugin/LvalueAttributes.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Mason/Plugin/LvalueAttributes.pm b/lib/Mason/Plugin/LvalueAttributes.pm index 1714272a..3309c534 100644 --- a/lib/Mason/Plugin/LvalueAttributes.pm +++ b/lib/Mason/Plugin/LvalueAttributes.pm @@ -54,5 +54,5 @@ convenience of the Lvalue attributes outweighs the need for setter features. =head1 ACKNOWLEDGEMENTS Inspired by Christopher Brown's -L. +L. From a4cacbf0264f4df807dab423491e44a187c9626e Mon Sep 17 00:00:00 2001 From: Paul Cochrane Date: Mon, 7 Sep 2015 13:01:07 +0200 Subject: [PATCH 3/3] Fix non-escaped forward slash podchecker warning POD parsers can have problems when forward slashes appear in the text part of a POD link (`L<>`). This change avoids the issue without changing the sense of the sentence. If one uses the advice in `Pod::Checker` for handline this issue, one would have to use `PSGIEPlack` which is simply too hard to read, although avoids the error while preserving the forward slash. In this case it seems that a hyphen is sufficient to retain the meaning while avoiding any potential POD parser problems. --- lib/Mason.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Mason.pm b/lib/Mason.pm index aa754f21..c5ed56b7 100644 --- a/lib/Mason.pm +++ b/lib/Mason.pm @@ -110,7 +110,7 @@ Thanks to Stevan Little and the L team for the awesomeness of Moose, which motivated me to create a second version of Mason years after I thought I was done. -Thanks to Tatsuhiko Miyagawa and the L team, +Thanks to Tatsuhiko Miyagawa and the L team, who freed me from ever worrying about server backends again. =head1 SEE ALSO