diff options
author | Arthur de Jong <arthur@arthurdejong.org> | 2014-11-01 13:43:45 +0100 |
---|---|---|
committer | Arthur de Jong <arthur@arthurdejong.org> | 2014-11-01 13:43:45 +0100 |
commit | 3a7c9f7d2ffe14a9d2f9bc37f6eaeba4f897970c (patch) | |
tree | 0607fb76b24f4dd752565a6d96a9d179f3c020f9 /stdnum/iban.py | |
parent | 6e332b138b10dc8c8f75116b4d5cb32c0b8d7bd6 (diff) |
Fix common spelling mistake
Diffstat (limited to 'stdnum/iban.py')
-rw-r--r-- | stdnum/iban.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/stdnum/iban.py b/stdnum/iban.py index fe3b093..84c2b68 100644 --- a/stdnum/iban.py +++ b/stdnum/iban.py @@ -21,7 +21,7 @@ The IBAN is used to identify bank accounts across national borders. The first two letters are a country code. The next two digits are check digits -for the ISO 7064 Mod 97, 10 checksum. Each country uses it's own format +for the ISO 7064 Mod 97, 10 checksum. Each country uses its own format for the remainder of the number. Some countries may also use checksum algorithms within their number but @@ -62,7 +62,7 @@ def compact(number): def _to_base10(number): - """Prepare the number to it's base10 representation (also moving the + """Prepare the number to its base10 representation (also moving the check digits to the end) so it can be checked with the ISO 7064 Mod 97, 10 algorithm.""" # TODO: find out whether this should be in the mod_97_10 module |