Skip to content

Commit 30a48d8

Browse files
committed
fix: Correct typo in warning suggesting "enable_git_follow: false"
In the warning introduced in 596273f, the word "quirk" is confusingly rendered as "quick". Fix the warning to correctly say "quirk".
1 parent ea69e97 commit 30a48d8

File tree

1 file changed

+1
-1
lines changed
  • src/mkdocs_git_revision_date_localized_plugin

1 file changed

+1
-1
lines changed

src/mkdocs_git_revision_date_localized_plugin/plugin.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -342,7 +342,7 @@ def on_page_markdown(self, markdown: str, page: Page, config: config_options.Con
342342
if first_revision_timestamp > last_revision_timestamp:
343343
# See also https://github.com/timvink/mkdocs-git-revision-date-localized-plugin/issues/111
344344
msg = "First revision timestamp is older than last revision timestamp for page %s. " % page.file.src_path
345-
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."
345+
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."
346346
logging.warning(msg)
347347
first_revision_hash, first_revision_timestamp = last_revision_hash, last_revision_timestamp
348348

0 commit comments

Comments
 (0)