diff --git a/lib/rx_storage.dart b/lib/rx_storage.dart index 8694f68..5af4f56 100644 --- a/lib/rx_storage.dart +++ b/lib/rx_storage.dart @@ -6,7 +6,7 @@ library rx_storage; export 'src/impl/real_storage.dart'; export 'src/interface/rx_storage.dart'; export 'src/interface/storage.dart'; -export 'src/interface/transactionally_storage.dart'; +export 'src/interface/transactional_storage.dart'; export 'src/logger/default_logger.dart'; export 'src/logger/empty_logger.dart'; export 'src/logger/event.dart'; diff --git a/lib/src/impl/real_storage.dart b/lib/src/impl/real_storage.dart index 7e44447..1d5fd6c 100644 --- a/lib/src/impl/real_storage.dart +++ b/lib/src/impl/real_storage.dart @@ -8,7 +8,7 @@ import '../async/async_memoizer.dart'; import '../async/async_queue.dart'; import '../interface/rx_storage.dart'; import '../interface/storage.dart'; -import '../interface/transactionally_storage.dart'; +import '../interface/transactional_storage.dart'; import '../logger/event.dart'; import '../logger/logger.dart'; import '../model/error.dart'; diff --git a/lib/src/interface/rx_storage.dart b/lib/src/interface/rx_storage.dart index 42a97b6..cf8e6d4 100644 --- a/lib/src/interface/rx_storage.dart +++ b/lib/src/interface/rx_storage.dart @@ -5,11 +5,11 @@ import 'package:meta/meta.dart'; import '../impl/real_storage.dart'; import '../logger/logger.dart'; import 'storage.dart'; -import 'transactionally_storage.dart'; +import 'transactional_storage.dart'; /// Get [Stream]s by key from persistent storage. abstract class RxStorage - implements TransactionallyStorage { + implements TransactionalStorage { /// Constructs a [RxStorage] by wrapping a [Storage]. factory RxStorage( FutureOr> storageOrFuture, [ diff --git a/lib/src/interface/transactionally_storage.dart b/lib/src/interface/transactional_storage.dart similarity index 95% rename from lib/src/interface/transactionally_storage.dart rename to lib/src/interface/transactional_storage.dart index aa42ff7..391c78e 100644 --- a/lib/src/interface/transactionally_storage.dart +++ b/lib/src/interface/transactional_storage.dart @@ -8,7 +8,7 @@ typedef Transformer = FutureOr Function(T); /// A persistent store for simple data. /// Data is persisted to disk asynchronously and transactionally. -abstract class TransactionallyStorage +abstract class TransactionalStorage implements Storage { /// `Read–modify–write`. ///