Skip to content

Commit

Permalink
typo in _equals_preprocess addressed
Browse files Browse the repository at this point in the history
  • Loading branch information
davidhassell committed May 10, 2021
1 parent 53605ff commit 0a60a47
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions cfdm/mixin/container.py
Original file line number Diff line number Diff line change
Expand Up @@ -202,12 +202,12 @@ def _equals_preprocess(self, other, verbose=None, ignore_type=False):
* If the LHS operand is (object identity) the RHS operand then
return True.
* If ignore_type=False and the LHS operand is not of the same
type, or a sublcass of, the RHS operand then return False
* If ignore_type=False and the LHS operand is not of exactly
the same type as the RHS operand then return False.
* If ignore_type=True and the LHS operand is not of the same
type, or a sublcass of, the RHS operand then instantiate a
new instance based on the the RHS class and return it.
* If ignore_type=True and the LHS operand is not of exactly
the same type as the RHS operand then instantiate a new
instance based on the the RHS class and return it.
.. versionadded:: (cfdm) 1.7.0
Expand Down

0 comments on commit 0a60a47

Please sign in to comment.