Lucene.Net.Util.Mutable: Fixed XML documentation comments
Project: http://git-wip-us.apache.org/repos/asf/lucenenet/repo Commit: http://git-wip-us.apache.org/repos/asf/lucenenet/commit/d4e44981 Tree: http://git-wip-us.apache.org/repos/asf/lucenenet/tree/d4e44981 Diff: http://git-wip-us.apache.org/repos/asf/lucenenet/diff/d4e44981 Branch: refs/heads/master Commit: d4e4498102bf93f517d8acc5b0c0491152b3376c Parents: 9bd4dc8 Author: Shad Storhaug <[email protected]> Authored: Mon Jun 5 02:34:19 2017 +0700 Committer: Shad Storhaug <[email protected]> Committed: Mon Jun 5 06:16:28 2017 +0700 ---------------------------------------------------------------------- CONTRIBUTING.md | 3 +-- src/Lucene.Net/Util/Mutable/MutableValue.cs | 2 +- src/Lucene.Net/Util/Mutable/MutableValueBool.cs | 4 ++-- src/Lucene.Net/Util/Mutable/MutableValueDate.cs | 4 ++-- src/Lucene.Net/Util/Mutable/MutableValueDouble.cs | 4 ++-- src/Lucene.Net/Util/Mutable/MutableValueStr.cs | 4 ++-- 6 files changed, 10 insertions(+), 11 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/lucenenet/blob/d4e44981/CONTRIBUTING.md ---------------------------------------------------------------------- diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index d387b33..ccfa22a 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -52,8 +52,7 @@ helpers to help with that, see for examples see our [Java style methods to avoid 1. Lucene.Net.Core (project) 1. Codecs (namespace) - 2. Util.Mutable (namespace) - 3. Util.Packed (namespace) + 2. Util.Packed (namespace) 2. Lucene.Net.Codecs (project) See [Documenting Lucene.Net](https://cwiki.apache.org/confluence/display/LUCENENET/Documenting+Lucene.Net) for instructions. http://git-wip-us.apache.org/repos/asf/lucenenet/blob/d4e44981/src/Lucene.Net/Util/Mutable/MutableValue.cs ---------------------------------------------------------------------- diff --git a/src/Lucene.Net/Util/Mutable/MutableValue.cs b/src/Lucene.Net/Util/Mutable/MutableValue.cs index d8505e4..9cf2ebd 100644 --- a/src/Lucene.Net/Util/Mutable/MutableValue.cs +++ b/src/Lucene.Net/Util/Mutable/MutableValue.cs @@ -22,7 +22,7 @@ namespace Lucene.Net.Util.Mutable /// <summary> /// Base class for all mutable values. - /// + /// <para/> /// @lucene.internal /// </summary> public abstract class MutableValue : IComparable<MutableValue>, IComparable http://git-wip-us.apache.org/repos/asf/lucenenet/blob/d4e44981/src/Lucene.Net/Util/Mutable/MutableValueBool.cs ---------------------------------------------------------------------- diff --git a/src/Lucene.Net/Util/Mutable/MutableValueBool.cs b/src/Lucene.Net/Util/Mutable/MutableValueBool.cs index 589165a..4d09c08 100644 --- a/src/Lucene.Net/Util/Mutable/MutableValueBool.cs +++ b/src/Lucene.Net/Util/Mutable/MutableValueBool.cs @@ -18,8 +18,8 @@ namespace Lucene.Net.Util.Mutable */ /// <summary> - /// <seealso cref="MutableValue"/> implementation of type - /// <code>boolean</code>. + /// <see cref="MutableValue"/> implementation of type + /// <see cref="bool"/>. /// </summary> public class MutableValueBool : MutableValue { http://git-wip-us.apache.org/repos/asf/lucenenet/blob/d4e44981/src/Lucene.Net/Util/Mutable/MutableValueDate.cs ---------------------------------------------------------------------- diff --git a/src/Lucene.Net/Util/Mutable/MutableValueDate.cs b/src/Lucene.Net/Util/Mutable/MutableValueDate.cs index bddab21..258fd6a 100644 --- a/src/Lucene.Net/Util/Mutable/MutableValueDate.cs +++ b/src/Lucene.Net/Util/Mutable/MutableValueDate.cs @@ -20,8 +20,8 @@ namespace Lucene.Net.Util.Mutable */ /// <summary> - /// <seealso cref="MutableValue"/> implementation of type - /// <seealso cref="Date"/>. + /// <see cref="MutableValue"/> implementation of type + /// <see cref="DateTime"/>. /// </summary> public class MutableValueDate : MutableValueInt64 { http://git-wip-us.apache.org/repos/asf/lucenenet/blob/d4e44981/src/Lucene.Net/Util/Mutable/MutableValueDouble.cs ---------------------------------------------------------------------- diff --git a/src/Lucene.Net/Util/Mutable/MutableValueDouble.cs b/src/Lucene.Net/Util/Mutable/MutableValueDouble.cs index cd18edc..26770a9 100644 --- a/src/Lucene.Net/Util/Mutable/MutableValueDouble.cs +++ b/src/Lucene.Net/Util/Mutable/MutableValueDouble.cs @@ -20,8 +20,8 @@ namespace Lucene.Net.Util.Mutable */ /// <summary> - /// <seealso cref="MutableValue"/> implementation of type - /// <code>double</code>. + /// <see cref="MutableValue"/> implementation of type + /// <see cref="double"/>. /// </summary> public class MutableValueDouble : MutableValue { http://git-wip-us.apache.org/repos/asf/lucenenet/blob/d4e44981/src/Lucene.Net/Util/Mutable/MutableValueStr.cs ---------------------------------------------------------------------- diff --git a/src/Lucene.Net/Util/Mutable/MutableValueStr.cs b/src/Lucene.Net/Util/Mutable/MutableValueStr.cs index 33665b8..7ededd1 100644 --- a/src/Lucene.Net/Util/Mutable/MutableValueStr.cs +++ b/src/Lucene.Net/Util/Mutable/MutableValueStr.cs @@ -18,8 +18,8 @@ namespace Lucene.Net.Util.Mutable */ /// <summary> - /// <seealso cref="MutableValue"/> implementation of type - /// <seealso cref="String"/>. + /// <see cref="MutableValue"/> implementation of type + /// <see cref="string"/>. /// </summary> public class MutableValueStr : MutableValue {
