increasing consistency
This commit is contained in:
parent
66f129273c
commit
b7cd0c1d51
|
@ -120,7 +120,7 @@ class Config(dict):
|
|||
"""
|
||||
Return self|=other.
|
||||
|
||||
Update configuration with contents of other.
|
||||
Update configuration with contents of other (in-place).
|
||||
|
||||
"""
|
||||
return self.__or__(other)
|
||||
|
|
|
@ -246,11 +246,13 @@ class Orientation(Rotation,Crystal):
|
|||
def __mul__(self: MyType,
|
||||
other: Union[Rotation, 'Orientation']) -> MyType:
|
||||
"""
|
||||
Compose this orientation with other.
|
||||
Return self*other.
|
||||
|
||||
Compose with other.
|
||||
|
||||
Parameters
|
||||
----------
|
||||
other : Rotation or Orientation
|
||||
other : Rotation or Orientation, shape (self.shape)
|
||||
Object for composition.
|
||||
|
||||
Returns
|
||||
|
|
Loading…
Reference in New Issue