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/Common/AddressTable.cs | 2 +- ARMeilleure/Common/Counter.cs | 6 ++++-- 2 files changed, 5 insertions(+), 3 deletions(-) (limited to 'ARMeilleure/Common') 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) -- cgit v1.2.3