Skip to content

Commit 3fc271c

Browse files
committed
chore: rename BucketDataDocument to BucketDataDocumentV3 in comments
1 parent 1b8d481 commit 3fc271c

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

modules/module-mongodb-storage/src/storage/implementation/common/BucketDataDoc.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export interface BucketKey {
2323
/**
2424
* In-memory bucket data document.
2525
*
26-
* This is converted to/from BucketDataDocumentV1 / BucketDataDocument for storage.
26+
* This is converted to/from BucketDataDocumentV1 / BucketDataDocumentV3 for storage.
2727
*/
2828
export interface BucketDataDoc extends BucketDataProperties {
2929
/**

modules/module-mongodb-storage/src/storage/implementation/common/SingleBucketStore.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export type BucketDataDocumentGenericId = {
1414
/**
1515
* This document is never actually constructed - we use it as a "virtual" type.
1616
*
17-
* The actual implementations are BucketDataDocumentV1 or BucketDataDocument.
17+
* The actual implementations are BucketDataDocumentV1 or BucketDataDocumentV3.
1818
* They don't fully satisfy this interface, but this works to share common implementations.
1919
*
2020
* The idea is that we can have a common implementation between V1 & V3, using this type,

0 commit comments

Comments
 (0)