docs: fix simple typo, timstamp -> timestamp
There is a small typo in archivebox/index/__init__.py. Should read `timestamp` rather than `timstamp`.
This commit is contained in:
parent
c322bc59b6
commit
7bf63d91ff
1 changed files with 1 additions and 1 deletions
|
@ -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()
|
||||
|
|
Loading…
Reference in a new issue