From 7defc59b9dee5459e52f394642643dbd59c9b32f Mon Sep 17 00:00:00 2001 From: Nicholas Rodine Date: Fri, 19 Aug 2022 16:21:06 -0500 Subject: A few minor documentation fixes. (#3599) * A few minor documentation fixes. * Removed more invalid inheritdoc instances. --- ARMeilleure/CodeGen/Linking/Symbol.cs | 1 - ARMeilleure/Common/AddressTable.cs | 2 +- ARMeilleure/Common/Counter.cs | 6 ++++-- ARMeilleure/Translation/IntervalTree.cs | 2 +- 4 files changed, 6 insertions(+), 5 deletions(-) (limited to 'ARMeilleure') diff --git a/ARMeilleure/CodeGen/Linking/Symbol.cs b/ARMeilleure/CodeGen/Linking/Symbol.cs index fa47ee23..39e0c3eb 100644 --- a/ARMeilleure/CodeGen/Linking/Symbol.cs +++ b/ARMeilleure/CodeGen/Linking/Symbol.cs @@ -58,7 +58,6 @@ namespace ARMeilleure.CodeGen.Linking /// First instance /// Second instance /// if not equal; otherwise - /// public static bool operator !=(Symbol a, Symbol b) { return !(a == b); diff --git a/ARMeilleure/Common/AddressTable.cs b/ARMeilleure/Common/AddressTable.cs index 60586a35..e03a38e6 100644 --- a/ARMeilleure/Common/AddressTable.cs +++ b/ARMeilleure/Common/AddressTable.cs @@ -206,7 +206,7 @@ namespace ARMeilleure.Common /// Type of elements /// Number of elements /// Fill value - /// if leaf; otherwise + /// if leaf; otherwise /// Allocated block private IntPtr Allocate(int length, T fill, bool leaf) where T : unmanaged { diff --git a/ARMeilleure/Common/Counter.cs b/ARMeilleure/Common/Counter.cs index defb5aba..4b0627c1 100644 --- a/ARMeilleure/Common/Counter.cs +++ b/ARMeilleure/Common/Counter.cs @@ -9,6 +9,9 @@ namespace ARMeilleure.Common class Counter : IDisposable where T : unmanaged { private bool _disposed; + /// + /// Index in the + /// private readonly int _index; private readonly EntryTable _countTable; @@ -17,7 +20,6 @@ namespace ARMeilleure.Common /// instance and index. /// /// instance - /// Index in the /// is /// is unsupported public Counter(EntryTable countTable) @@ -68,7 +70,7 @@ namespace ARMeilleure.Common /// /// Releases all unmanaged and optionally managed resources used by the instance. /// - /// to dispose managed resources also; otherwise just unmanaged resouces + /// to dispose managed resources also; otherwise just unmanaged resources protected virtual void Dispose(bool disposing) { if (!_disposed) diff --git a/ARMeilleure/Translation/IntervalTree.cs b/ARMeilleure/Translation/IntervalTree.cs index 51b9a51f..10bab7ae 100644 --- a/ARMeilleure/Translation/IntervalTree.cs +++ b/ARMeilleure/Translation/IntervalTree.cs @@ -344,7 +344,7 @@ namespace ARMeilleure.Translation } /// - /// Removes the value from the dictionary after searching for it with . + /// Removes the value from the dictionary after searching for it with . /// /// Key to search for /// Number of deleted values -- cgit v1.2.3