diff --git a/python/damask/_colormap.py b/python/damask/_colormap.py index ea3d16688..688070529 100644 --- a/python/damask/_colormap.py +++ b/python/damask/_colormap.py @@ -51,7 +51,7 @@ class Colormap(mpl.colors.ListedColormap): """ Return self==other. - Test equality of colormaps. + Test equality of other. """ if not isinstance(other, Colormap): @@ -104,7 +104,7 @@ class Colormap(mpl.colors.ListedColormap): """ Return ~self. - Return reverse of self + Reverse. """ return self.reversed() diff --git a/python/damask/_crystal.py b/python/damask/_crystal.py index b7b56f742..fb2dc3438 100644 --- a/python/damask/_crystal.py +++ b/python/damask/_crystal.py @@ -422,7 +422,7 @@ class Crystal(): """ Return self==other. - Equal to other. + Test equality of other. Parameters ---------- diff --git a/python/damask/_orientation.py b/python/damask/_orientation.py index b33c4c125..f60772901 100644 --- a/python/damask/_orientation.py +++ b/python/damask/_orientation.py @@ -152,7 +152,7 @@ class Orientation(Rotation,Crystal): """ Return self==other. - Equal to other. + Test equality of other. Parameters ---------- @@ -172,7 +172,7 @@ class Orientation(Rotation,Crystal): """ Return self!=other. - Not equal to other. + Test inequality of other. Parameters ---------- diff --git a/python/damask/_rotation.py b/python/damask/_rotation.py index a2fbef3fc..ac93fe885 100644 --- a/python/damask/_rotation.py +++ b/python/damask/_rotation.py @@ -131,7 +131,7 @@ class Rotation: """ Return self==other. - Equal to other. + Test equality of other. Parameters ---------- @@ -149,7 +149,7 @@ class Rotation: """ Return self!=other. - Not equal to other. + Test inequality of other. Parameters ---------- diff --git a/python/damask/_table.py b/python/damask/_table.py index fef076649..94cba9b89 100644 --- a/python/damask/_table.py +++ b/python/damask/_table.py @@ -54,7 +54,7 @@ class Table: """ Return self==other. - Compare to other Table. + Test equality of other table. """ return NotImplemented if not isinstance(other,Table) else \ @@ -66,7 +66,7 @@ class Table: """ Return x[y]. - Slice the Table according to item. + Return table slice according to item. Parameters ---------- diff --git a/python/damask/_vtk.py b/python/damask/_vtk.py index 1e19c8bee..46d779023 100644 --- a/python/damask/_vtk.py +++ b/python/damask/_vtk.py @@ -61,7 +61,7 @@ class VTK: """ Return self==other. - Equal to other. + Test equality of other. Parameters ----------