Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,12 @@ repos:
name: run check hooks apply
description: check that all the hooks apply to the repository
- repo: https://github.com/codespell-project/codespell
rev: v2.4.1
rev: v2.4.2
hooks:
- id: codespell
name: run codespell
description: check spelling with codespell
exclude: ^.*Lucene\.Net\.Tests.*$
exclude: ^src/Lucene\.Net\.Analysis\.Common/Analysis/../.*\.rslp$|^.*Lucene\.Net\.Tests.*$
args: [--ignore-words=.github/linters/codespell.txt]
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v6.0.0
Expand Down
2 changes: 1 addition & 1 deletion src/Lucene.Net/Search/SearcherLifetimeManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ public bool DoPrune(double ageSec, IndexSearcher searcher)
/// entries are passed to the <see cref="IPruner"/> in sorted (newest to
/// oldest <see cref="IndexSearcher"/>) order.
///
/// <para/><b>NOTE</b>: you must peridiocally call this, ideally
/// <para/><b>NOTE</b>: you must periodically call this, ideally
/// from the same background thread that opens new
/// searchers.
/// </summary>
Expand Down
Loading