From dbf3a01f432bf25bc10842864071f4a59800a36a Mon Sep 17 00:00:00 2001 From: Natalia Portillo Date: Tue, 17 Aug 2021 16:12:23 +0100 Subject: [PATCH] More documentation inheritance. --- CRC16Context.cs | 1 + CRC64Context.cs | 1 + SpamSumContext.cs | 1 + 3 files changed, 3 insertions(+) diff --git a/CRC16Context.cs b/CRC16Context.cs index 79a10d865..180a669ab 100644 --- a/CRC16Context.cs +++ b/CRC16Context.cs @@ -38,6 +38,7 @@ using Aaru.Helpers; namespace Aaru.Checksums { + /// /// Implements a CRC16 algorithm public class Crc16Context : IChecksum { diff --git a/CRC64Context.cs b/CRC64Context.cs index 5b6e29be9..46b46f642 100644 --- a/CRC64Context.cs +++ b/CRC64Context.cs @@ -37,6 +37,7 @@ using Aaru.Helpers; namespace Aaru.Checksums { + /// /// Implements a CRC64 algorithm public sealed class Crc64Context : IChecksum { diff --git a/SpamSumContext.cs b/SpamSumContext.cs index 99685268c..16af49b45 100644 --- a/SpamSumContext.cs +++ b/SpamSumContext.cs @@ -46,6 +46,7 @@ using Aaru.CommonTypes.Interfaces; namespace Aaru.Checksums { + /// /// Implements the SpamSum fuzzy hashing algorithm. public sealed class SpamSumContext : IChecksum {