Lucene.Net.Sandbox: fix documentation comment formatting problems
Project: http://git-wip-us.apache.org/repos/asf/lucenenet/repo Commit: http://git-wip-us.apache.org/repos/asf/lucenenet/commit/a538f19b Tree: http://git-wip-us.apache.org/repos/asf/lucenenet/tree/a538f19b Diff: http://git-wip-us.apache.org/repos/asf/lucenenet/diff/a538f19b Branch: refs/heads/api-work Commit: a538f19bfa8364a1a26394ab4d5a1dd9daa94b85 Parents: e32cb9e Author: Shad Storhaug <[email protected]> Authored: Sun Feb 5 13:20:02 2017 +0700 Committer: Shad Storhaug <[email protected]> Committed: Sun Feb 5 14:47:53 2017 +0700 ---------------------------------------------------------------------- src/Lucene.Net.Sandbox/Queries/SlowFuzzyTermsEnum.cs | 2 +- src/Lucene.Net.Sandbox/Queries/SortedSetSortField.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/lucenenet/blob/a538f19b/src/Lucene.Net.Sandbox/Queries/SlowFuzzyTermsEnum.cs ---------------------------------------------------------------------- diff --git a/src/Lucene.Net.Sandbox/Queries/SlowFuzzyTermsEnum.cs b/src/Lucene.Net.Sandbox/Queries/SlowFuzzyTermsEnum.cs index 629de32..05121db 100644 --- a/src/Lucene.Net.Sandbox/Queries/SlowFuzzyTermsEnum.cs +++ b/src/Lucene.Net.Sandbox/Queries/SlowFuzzyTermsEnum.cs @@ -83,7 +83,7 @@ namespace Lucene.Net.Sandbox.Queries /// After calling the constructor the enumeration is already pointing to the first /// valid term if such a term exists. /// </summary> - /// <exception cref="IOException">If there is a low-level I/O error.</exception> + /// <exception cref="System.IO.IOException">If there is a low-level I/O error.</exception> public LinearFuzzyTermsEnum(SlowFuzzyTermsEnum outerInstance) : base(outerInstance.m_terms.GetIterator(null)) { http://git-wip-us.apache.org/repos/asf/lucenenet/blob/a538f19b/src/Lucene.Net.Sandbox/Queries/SortedSetSortField.cs ---------------------------------------------------------------------- diff --git a/src/Lucene.Net.Sandbox/Queries/SortedSetSortField.cs b/src/Lucene.Net.Sandbox/Queries/SortedSetSortField.cs index 9ef71ef..78a27db 100644 --- a/src/Lucene.Net.Sandbox/Queries/SortedSetSortField.cs +++ b/src/Lucene.Net.Sandbox/Queries/SortedSetSortField.cs @@ -35,7 +35,7 @@ namespace Lucene.Net.Sandbox.Queries /// (see below) to ensure that all selections happen in constant-time for performance. /// <para/> /// Like sorting by string, this also supports sorting missing values as first or last, - /// via <see cref="SetMissingValue(object)"/>. + /// via <see cref="MissingValue"/>. /// <para/> /// Limitations: /// <list type="bullet">
