Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit e648f05

Browse files
authored
Update docstrings (#841)
* link to Graphic in docstrings * update mixin
1 parent 70c9e04 commit e648f05

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

fastplotlib/graphics/image.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ def __init__(
123123
array is large.
124124
125125
kwargs:
126-
additional keyword arguments passed to Graphic
126+
additional keyword arguments passed to :class:`.Graphic`
127127
128128
"""
129129

fastplotlib/graphics/line.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ def __init__(
7676
coordinate space in which the thickness is expressed ("screen", "world", "model")
7777
7878
**kwargs
79-
passed to Graphic
79+
passed to :class:`.Graphic`
8080
8181
"""
8282

fastplotlib/graphics/scatter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ def __init__(
8181
coordinate space in which the size is expressed ("screen", "world", "model")
8282
8383
kwargs
84-
passed to Graphic
84+
passed to :class:`.Graphic`
8585
8686
"""
8787

fastplotlib/graphics/text.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ def __init__(
6666
* Horizontal values: "left", "center", "right"
6767
6868
**kwargs
69-
passed to Graphic
69+
passed to :class:`.Graphic`
7070
7171
"""
7272

fastplotlib/layouts/_graphic_methods_mixin.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ def add_image(
6767
array is large.
6868
6969
kwargs:
70-
additional keyword arguments passed to Graphic
70+
additional keyword arguments passed to :class:`.Graphic`
7171
7272
7373
"""
@@ -225,7 +225,7 @@ def add_line(
225225
coordinate space in which the thickness is expressed ("screen", "world", "model")
226226
227227
**kwargs
228-
passed to Graphic
228+
passed to :class:`.Graphic`
229229
230230
231231
"""
@@ -401,7 +401,7 @@ def add_scatter(
401401
coordinate space in which the size is expressed ("screen", "world", "model")
402402
403403
kwargs
404-
passed to Graphic
404+
passed to :class:`.Graphic`
405405
406406
407407
"""
@@ -467,7 +467,7 @@ def add_text(
467467
* Horizontal values: "left", "center", "right"
468468
469469
**kwargs
470-
passed to Graphic
470+
passed to :class:`.Graphic`
471471
472472
473473
"""

0 commit comments

Comments
 (0)