diff --git a/lib/matplotlib/backend_bases.py b/lib/matplotlib/backend_bases.py index 2617e5a8be05..14721a1d602b 100644 --- a/lib/matplotlib/backend_bases.py +++ b/lib/matplotlib/backend_bases.py @@ -908,16 +908,18 @@ def set_dashes(self, dash_offset, dash_list): Parameters ---------- dash_offset : float - The offset (usually 0). + Distance, in points, into the dash pattern at which to + start the pattern. It is usually set to 0. dash_list : array-like or None The on-off sequence as points. None specifies a solid line. All values must otherwise be non-negative (:math:`\\ge 0`). Notes ----- - See p. 107 of to PostScript `blue book`_ for more info. - - .. _blue book: https://www-cdf.fnal.gov/offline/PostScript/BLUEBOOK.PDF + See p. 666 of the PostScript + `Language Reference + `_ + for more info. """ if dash_list is not None: dl = np.asarray(dash_list)