Skip to content

Commit 05f996b

Browse files
committed
Fix links in PG::Result status methods
1 parent 3730cda commit 05f996b

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

ext/pg_result.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -577,7 +577,7 @@ static void pgresult_init_fnames(VALUE self)
577577
* * +PGRES_PIPELINE_SYNC+
578578
* * +PGRES_PIPELINE_ABORTED+
579579
*
580-
* Use <tt>res.res_status</tt> to retrieve the string representation.
580+
* Use #res_status or Result.res_status to retrieve the string representation.
581581
*/
582582
static VALUE
583583
pgresult_result_status(VALUE self)
@@ -589,7 +589,7 @@ pgresult_result_status(VALUE self)
589589
* call-seq:
590590
* PG::Result.res_status( status ) -> String
591591
*
592-
* Returns the string representation of +status+.
592+
* Returns the string representation of #result_status.
593593
*
594594
*/
595595
static VALUE
@@ -603,7 +603,7 @@ pgresult_s_res_status(VALUE self, VALUE status)
603603
* res.res_status -> String
604604
* res.res_status( status ) -> String
605605
*
606-
* Returns the string representation of the status of the result or of the provided +status+.
606+
* Returns the string representation of the status of the result or of the provided #result_status.
607607
*
608608
*/
609609
static VALUE

0 commit comments

Comments
 (0)