From 7cd4c2339313e97825312c9d5d934ca6cceeb9eb Mon Sep 17 00:00:00 2001 From: Rizwan Date: Tue, 3 Jun 2025 23:05:32 +0200 Subject: [PATCH] Update Storage class docs --- Storage/Classes/Storage.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Storage/Classes/Storage.swift b/Storage/Classes/Storage.swift index 43d0a59..2248b97 100644 --- a/Storage/Classes/Storage.swift +++ b/Storage/Classes/Storage.swift @@ -11,7 +11,7 @@ public protocol KeyValueStorable: AnyObject { extension NSUbiquitousKeyValueStore: KeyValueStorable {} /// A class that provides a simple way to store and retrieve Codable objects. -/// The `Storage` class supports different storage types such as cache, document, and user defaults. +/// The `Storage` class supports different storage types such as cache, document, user defaults, and ubiquitous key-value store. /// /// - Generic T: The type of object to store; must conform to `Codable`. public final class Storage where T: Codable {