From 3a7c9f7d2ffe14a9d2f9bc37f6eaeba4f897970c Mon Sep 17 00:00:00 2001 From: Arthur de Jong Date: Sat, 1 Nov 2014 13:43:45 +0100 Subject: Fix common spelling mistake --- stdnum/iban.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'stdnum/iban.py') 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 -- cgit v1.2.3