This is an automated email from the ASF dual-hosted git repository. nightowl888 pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/lucenenet.git
commit 44558303242a339d97279f53c6954b0006a08152 Author: Shad Storhaug <[email protected]> AuthorDate: Thu Jul 16 03:36:19 2020 +0700 Lucene.Net.Index.IndexWriterConfig: Minor documentation fix --- src/Lucene.Net/Index/IndexWriterConfig.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Lucene.Net/Index/IndexWriterConfig.cs b/src/Lucene.Net/Index/IndexWriterConfig.cs index 45dd161..79ffc7c 100644 --- a/src/Lucene.Net/Index/IndexWriterConfig.cs +++ b/src/Lucene.Net/Index/IndexWriterConfig.cs @@ -49,9 +49,9 @@ namespace Lucene.Net.Index /// </code> /// /// However, if you prefer to match the syntax of Lucene using chained setter methods, - /// there are extension methods in the Lucene.Net.Support namespace. Example usage: + /// there are extension methods in the Lucene.Net.Index.Extensions namespace. Example usage: /// <code> - /// using Lucene.Net.Support; + /// using Lucene.Net.Index.Extensions; /// /// .. ///
