From 83f95b3d62655ba12353c42f90c27cfbd090c60e Mon Sep 17 00:00:00 2001 From: Eli <88557639+lishaduck@users.noreply.github.com> Date: Tue, 2 Jul 2024 04:04:17 -0400 Subject: [PATCH] clarify unfreezed documention (#1095) --- packages/freezed_annotation/lib/freezed_annotation.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/freezed_annotation/lib/freezed_annotation.dart b/packages/freezed_annotation/lib/freezed_annotation.dart index ee9eb6be..28e25f6e 100644 --- a/packages/freezed_annotation/lib/freezed_annotation.dart +++ b/packages/freezed_annotation/lib/freezed_annotation.dart @@ -499,7 +499,7 @@ const freezed = Freezed(); /// Defines a potentially mutable data-class. /// /// As opposed to [freezed], properties of the object can be mutable. -/// On the other hand, a data class will not implement ==. +/// On the other hand, they will not implement ==. const unfreezed = Freezed( equal: false, addImplicitFinal: false,