@@ -684,12 +684,12 @@ def axhline(self, y=0, xmin=0, xmax=1, **kwargs):
684684
685685 Returns
686686 -------
687- `~matplotlib.lines.Line2D`
687+ :class: `~matplotlib.lines.Line2D`
688688
689689 Notes
690690 -----
691- kwargs are the same as kwargs to plot, and can be
692- used to control the line properties. e.g.,
691+ kwargs are passed to :class:`~matplotlib.lines.Line2D` and can be used
692+ to control the line properties.
693693
694694 Examples
695695 --------
@@ -702,7 +702,7 @@ def axhline(self, y=0, xmin=0, xmax=1, **kwargs):
702702
703703 >>> axhline(y=1)
704704
705- * draw a default hline at 'y' = .5 that spans the the middle half of
705+ * draw a default hline at 'y' = .5 that spans the middle half of
706706 the xrange::
707707
708708 >>> axhline(y=.5, xmin=0.25, xmax=0.75)
@@ -746,16 +746,16 @@ def axvline(self, x=0, ymin=0, ymax=1, **kwargs):
746746 x position in data coordinates of the vertical line.
747747
748748 ymin : scalar, optional, default: 0
749- Should be between 0 and 1, 0 being the far left of the plot, 1 the
750- far right of the plot.
749+ Should be between 0 and 1, 0 being the bottom of the plot, 1 the
750+ top of the plot.
751751
752752 ymax : scalar, optional, default: 1
753- Should be between 0 and 1, 0 being the far left of the plot, 1 the
754- far right of the plot.
753+ Should be between 0 and 1, 0 being the bottom of the plot, 1 the
754+ top of the plot.
755755
756756 Returns
757757 -------
758- `~matplotlib.lines.Line2D`
758+ :class: `~matplotlib.lines.Line2D`
759759
760760
761761 Examples
0 commit comments