diff --git a/src/caoscrawler/converters.py b/src/caoscrawler/converters.py
index f5c923f21d5eb762bbad5a5524bf4cc9c88cfb5c..6f76a1dafc3c41b0cc49bfcf4e3ccc8289115abe 100644
--- a/src/caoscrawler/converters.py
+++ b/src/caoscrawler/converters.py
@@ -588,7 +588,7 @@ class JSONFileConverter(DictConverter):
     def create_children(self, generalStore: GeneralStore, element: StructureElement):
         if not self.typecheck(element):
             raise RuntimeError("A JSON file is needed to create children")
-        # TODO: either add explicit time check for File structure element here,
+        # TODO: either add explicit type check for File structure element here,
         #       or add a comment to suppress mypy type warning.
         with open(element.path, 'r') as json_file:
             json_data = json.load(json_file)