diff --git a/src/mkdocs_git_revision_date_localized_plugin/plugin.py b/src/mkdocs_git_revision_date_localized_plugin/plugin.py index d9d74bc..aa2eca6 100644 --- a/src/mkdocs_git_revision_date_localized_plugin/plugin.py +++ b/src/mkdocs_git_revision_date_localized_plugin/plugin.py @@ -342,7 +342,7 @@ def on_page_markdown(self, markdown: str, page: Page, config: config_options.Con if first_revision_timestamp > last_revision_timestamp: # See also https://github.com/timvink/mkdocs-git-revision-date-localized-plugin/issues/111 msg = "First revision timestamp is older than last revision timestamp for page %s. " % page.file.src_path - msg += "This can be due to a quick in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration." + msg += "This can be due to a quirk in `git` follow behaviour. You can try to set `enable_git_follow: false` in the plugin configuration." logging.warning(msg) first_revision_hash, first_revision_timestamp = last_revision_hash, last_revision_timestamp