From 6ddd8c8322e53d29ef9872f2d4c7e83a888ee5b8 Mon Sep 17 00:00:00 2001 From: ForeverZer0 Date: Wed, 25 Aug 2021 05:21:56 -0400 Subject: [PATCH] Added comments and annotations --- SharpNBT/ZLib/Adler32.cs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/SharpNBT/ZLib/Adler32.cs b/SharpNBT/ZLib/Adler32.cs index 06d334f..f119ade 100644 --- a/SharpNBT/ZLib/Adler32.cs +++ b/SharpNBT/ZLib/Adler32.cs @@ -1,12 +1,14 @@ using System; using System.Runtime.CompilerServices; +using JetBrains.Annotations; namespace SharpNBT.ZLib { /// /// An Adler-32 checksum implementation for ZLib streams. /// - /// + /// + [PublicAPI] public sealed class Adler32 { private uint a = 1; @@ -89,7 +91,7 @@ namespace SharpNBT.ZLib } /// - /// Gets the current calculated checksum value as an unsigned 32-bit integer. + /// Gets the current calculated checksum value as the original unsigned 32-bit integer value. /// [CLSCompliant(false)] public uint UnsignedValue