Skip to content

Commit 322ebd9

Browse files
committed
fix docstring
1 parent 29f71f6 commit 322ebd9

File tree

9 files changed

+9
-9
lines changed

9 files changed

+9
-9
lines changed

src/compas/scene/sceneobject.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ class SceneObject(object):
1818
Attributes
1919
----------
2020
guids : list[object]
21-
The GUIDs of the drawn item in the visualization context.
21+
The GUIDs of the items drawn in the visualization context.
2222
2323
"""
2424

src/compas_rhino/scene/boxobject.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ def draw(self, color=None):
3939
Returns
4040
-------
4141
list[System.Guid]
42-
List of GUIDs of the object created in Rhino.
42+
List of GUIDs of the objects created in Rhino.
4343
4444
"""
4545
color = Color.coerce(color) or self.color

src/compas_rhino/scene/brepobject.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ def draw(self, color=None):
3636
Returns
3737
-------
3838
list[System.Guid]
39-
List of GUIDs of the object created in Rhino.
39+
List of GUIDs of the objects created in Rhino.
4040
4141
"""
4242
color = Color.coerce(color) or self.color

src/compas_rhino/scene/circleobject.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ def draw(self, color=None):
4040
Returns
4141
-------
4242
list[System.Guid]
43-
List of GUIDs of the object created in Rhino.
43+
List of GUIDs of the objects created in Rhino.
4444
4545
"""
4646
color = Color.coerce(color) or self.color

src/compas_rhino/scene/curveobject.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ def draw(self, color=None):
3838
Returns
3939
-------
4040
list[System.Guid]
41-
List of GUIDs of the object created in Rhino.
41+
List of GUIDs of the objects created in Rhino.
4242
4343
"""
4444
color = Color.coerce(color) or self.color

src/compas_rhino/scene/pointobject.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ def draw(self, color=None):
3838
Returns
3939
-------
4040
list[System.Guid]
41-
List of GUIDs of the object created in Rhino.
41+
List of GUIDs of the objects created in Rhino.
4242
4343
"""
4444
color = Color.coerce(color) or self.color

src/compas_rhino/scene/polygonobject.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ def draw(self, color=None):
4040
Returns
4141
-------
4242
list[System.Guid]
43-
List of GUIDs of the object created in Rhino.
43+
List of GUIDs of the objects created in Rhino.
4444
4545
"""
4646
color = Color.coerce(color) or self.color

src/compas_rhino/scene/polylineobject.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ def draw(self, color=None):
3939
Returns
4040
-------
4141
list[System.Guid]
42-
List of GUIDs of the object created in Rhino.
42+
List of GUIDs of the objects created in Rhino.
4343
4444
"""
4545
color = Color.coerce(color) or self.color

src/compas_rhino/scene/vectorobject.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ def draw(self, color=None, point=None):
4242
Returns
4343
-------
4444
list[System.Guid]
45-
List of GUIDs of the object created in Rhino.
45+
List of GUIDs of the objects created in Rhino.
4646
4747
"""
4848
color = Color.coerce(color) or self.color

0 commit comments

Comments
 (0)