@@ -59,7 +59,7 @@ class HyperStorage extends _HyperStorageImpl {
5959 /// Cache of serializable object containers indexed by name.
6060 ///
6161 /// This map stores [SerializableStorageContainer] instances created through
62- /// [jsonSerializableContainer ] or [objectContainer] methods. Containers are
62+ /// [jsonContainer ] or [objectContainer] methods. Containers are
6363 /// cached to ensure the same instance is returned for repeated requests with
6464 /// the same name, maintaining consistency of listeners and state.
6565 final Map <String , SerializableStorageContainer > _objectContainers = {};
@@ -195,7 +195,7 @@ class HyperStorage extends _HyperStorageImpl {
195195 /// Otherwise, a new container is created and cached.
196196 ///
197197 /// See also:
198- /// - [jsonSerializableContainer ] for storing custom objects with JSON
198+ /// - [jsonContainer ] for storing custom objects with JSON
199199 /// - [objectContainer] for custom serialization logic
200200 /// - [StorageContainer] for available operations
201201 Future <HyperStorageContainer > container (String name) async {
@@ -245,7 +245,7 @@ class HyperStorage extends _HyperStorageImpl {
245245 /// - [container] for basic storage containers
246246 /// - [objectContainer] for custom serialization logic
247247 /// - [JsonStorageContainer] for available operations
248- Future <JsonStorageContainer <E >> jsonSerializableContainer <E extends Object >(
248+ Future <JsonStorageContainer <E >> jsonContainer <E extends Object >(
249249 String name, {
250250 required ToJson <E > toJson,
251251 required FromJson <E > fromJson,
@@ -303,7 +303,7 @@ class HyperStorage extends _HyperStorageImpl {
303303 ///
304304 /// See also:
305305 /// - [container] for basic storage containers
306- /// - [jsonSerializableContainer ] for JSON serialization
306+ /// - [jsonContainer ] for JSON serialization
307307 /// - [SerializableStorageContainer] for the base container class
308308 Future <F > objectContainer <E extends Object , F extends SerializableStorageContainer <E >>(
309309 String name, {
0 commit comments