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