Browse Source

docs: fix simple typo, timstamp -> timestamp

There is a small typo in archivebox/index/__init__.py.

Should read `timestamp` rather than `timstamp`.
Tim Gates 5 years ago
parent
commit
7bf63d91ff
1 changed files with 1 additions and 1 deletions
  1. 1 1
      archivebox/index/__init__.py

+ 1 - 1
archivebox/index/__init__.py

@@ -124,7 +124,7 @@ def validate_links(links: Iterable[Link]) -> List[Link]:
     timer = TimedProgress(TIMEOUT * 4)
     try:
         links = archivable_links(links)  # remove chrome://, about:, mailto: etc.
-        links = sorted_links(links)      # deterministically sort the links based on timstamp, url
+        links = sorted_links(links)      # deterministically sort the links based on timestamp, url
         links = fix_duplicate_links(links)  # merge/dedupe duplicate timestamps & urls
     finally:
         timer.end()