Subject: | [Patch] POD nits |
The attached patch (against 0.5.11) fixes some POD, which renders wrong,
at least at search.cpan.org.
Subject: | pod.patch |
diff --git a/lib/OpenResty/SQL/Select.pm b/lib/OpenResty/SQL/Select.pm
index 9953e09..bb22725 100644
--- a/lib/OpenResty/SQL/Select.pm
+++ b/lib/OpenResty/SQL/Select.pm
@@ -117,10 +117,11 @@ This class provides an OO interface for generating SQL select statements without
=item C<from(@tables)>
-=item C<where($column => $value)>
+=item C<< where($column => $value) >>
=item C<order_by($column)>
-=item C<order_by($column => $direction)>
+
+=item C<< order_by($column => $direction) >>
=item C<limit($limit)>
diff --git a/lib/OpenResty/SQL/Update.pm b/lib/OpenResty/SQL/Update.pm
index 37a5dbc..08824f1 100644
--- a/lib/OpenResty/SQL/Update.pm
+++ b/lib/OpenResty/SQL/Update.pm
@@ -94,13 +94,15 @@ This class provides an OO interface for generating SQL update statements without
=over
=item C<new($table)>
+
=item C<new()>
=item C<update($table)>
-=item C<where($column => $value)>
+=item C<< where($column => $value) >>
=item C<reset()>
+
=item C<reset($table)>
=item C<generate>