diff options
author | Nicholas Rodine <halfofastaple@gmail.com> | 2022-08-19 16:21:06 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-19 18:21:06 -0300 |
commit | 7defc59b9dee5459e52f394642643dbd59c9b32f (patch) | |
tree | 37ee761db4901868a8b33ac47cb1571ce70618ab /ARMeilleure/Common/AddressTable.cs | |
parent | 951700fdd8f54fb34ffe8a3fb328a68b5bf37abe (diff) |
A few minor documentation fixes. (#3599)1.1.224
* A few minor documentation fixes.
* Removed more invalid inheritdoc instances.
Diffstat (limited to 'ARMeilleure/Common/AddressTable.cs')
-rw-r--r-- | ARMeilleure/Common/AddressTable.cs | 2 |
1 files changed, 1 insertions, 1 deletions
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 /// <typeparam name="T">Type of elements</typeparam> /// <param name="length">Number of elements</param> /// <param name="fill">Fill value</param> - /// <param name="leaf"><see langword="true"/> if leaf; otherwise <see langword=""="false"/></param> + /// <param name="leaf"><see langword="true"/> if leaf; otherwise <see langword="false"/></param> /// <returns>Allocated block</returns> private IntPtr Allocate<T>(int length, T fill, bool leaf) where T : unmanaged { |