diff --git a/hashing.py b/hashing.py
index 5ca62201fb83031080919c6c5423bb728265c408..25e53851496a958ba7c0104c2506a20ac39317da 100644
--- a/hashing.py
+++ b/hashing.py
@@ -56,7 +56,7 @@ def hash_string_to_formated_base2(input_string: str, hash_size: int) -> str:
     we count the needed number of basic hash to get to the wanted hash size / 2, because the size of the hash will be doubled in base 4
     then the input string is hashed with a "A" +k added at the end ( k is an incremented hash_number)
     the multiples hash are then concatenated to have a total hash of the wanted size /2 (rounded up to 64)
-    the total hash is then reduced in base 4, and brought to the exact wanted size
+    the total hash is then reduced in base 2, and brought to the exact wanted size
     """
     hash_number = (hash_size/4) // 64 +1 
     total_hash = ""