Finish the documentation of normalize_path

Signed-off-by: Gilles Peskine <Gilles.Peskine@arm.com>
diff --git a/tests/scripts/check-files.py b/tests/scripts/check-files.py
index b6fa989..62b526a 100755
--- a/tests/scripts/check-files.py
+++ b/tests/scripts/check-files.py
@@ -46,8 +46,10 @@
 
     @staticmethod
     def normalize_path(filepath):
-        """Normalize ``filepath`` """
+        """Normalize ``filepath`` with / as the directory separator."""
         filepath = os.path.normpath(filepath)
+        # On Windows, we may have backslashes to separate directories.
+        # We need slashes to match exemption lists.
         seps = os.path.sep
         if os.path.altsep is not None:
             seps += os.path.altsep