Repository: lucenenet Updated Branches: refs/heads/master e8e1b5a9c -> 9c5085c4b
Lucene.Net.Search.ConstantScoreAutoRewrite: Fixed broken doc comment references Project: http://git-wip-us.apache.org/repos/asf/lucenenet/repo Commit: http://git-wip-us.apache.org/repos/asf/lucenenet/commit/bfcb8958 Tree: http://git-wip-us.apache.org/repos/asf/lucenenet/tree/bfcb8958 Diff: http://git-wip-us.apache.org/repos/asf/lucenenet/diff/bfcb8958 Branch: refs/heads/master Commit: bfcb8958954cc96a9f18a47ea1a8536d5417f300 Parents: e8e1b5a Author: Shad Storhaug <[email protected]> Authored: Thu Jul 13 17:24:36 2017 +0700 Committer: Shad Storhaug <[email protected]> Committed: Thu Jul 13 17:24:36 2017 +0700 ---------------------------------------------------------------------- src/Lucene.Net/Search/ConstantScoreAutoRewrite.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/lucenenet/blob/bfcb8958/src/Lucene.Net/Search/ConstantScoreAutoRewrite.cs ---------------------------------------------------------------------- diff --git a/src/Lucene.Net/Search/ConstantScoreAutoRewrite.cs b/src/Lucene.Net/Search/ConstantScoreAutoRewrite.cs index aa741b9..16155d9 100644 --- a/src/Lucene.Net/Search/ConstantScoreAutoRewrite.cs +++ b/src/Lucene.Net/Search/ConstantScoreAutoRewrite.cs @@ -37,8 +37,8 @@ namespace Lucene.Net.Search /// constant-score rewrite method based on term and /// document counts from the query. If both the number of /// terms and documents is small enough, then - /// <see cref="CONSTANT_SCORE_BOOLEAN_QUERY_REWRITE"/> is used. - /// Otherwise, <see cref="CONSTANT_SCORE_FILTER_REWRITE"/> is + /// <see cref="MultiTermQuery.CONSTANT_SCORE_BOOLEAN_QUERY_REWRITE"/> is used. + /// Otherwise, <see cref="MultiTermQuery.CONSTANT_SCORE_FILTER_REWRITE"/> is /// used. /// </summary> // LUCENENET specific: made this class public. In Lucene there was a derived class
