aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/shorturls/baseconv.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shorturls/baseconv.py b/src/shorturls/baseconv.py
index ba2f759..1e22ed1 100644
--- a/src/shorturls/baseconv.py
+++ b/src/shorturls/baseconv.py
@@ -8,7 +8,7 @@ Sample usage:
>>> base20 = BaseConverter('0123456789abcdefghij')
>>> base20.from_decimal(1234)
'31e'
->>> base20.from_decimal('31e')
+>>> base20.to_decimal('31e')
1234
"""