Skip to content

Commit 4e1a8b3

Browse files
use // for private helper docs
1 parent 16b2bc6 commit 4e1a8b3

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

kernel/src/transaction/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -682,8 +682,8 @@ impl<S> Transaction<S> {
682682
self.read_snapshot_opt.is_none()
683683
}
684684

685-
/// Returns the read snapshot. Returns an error if this is a create-table transaction.
686-
/// To get the `Option<SnapshotRef>` directly, use the `read_snapshot_opt` field.
685+
// Returns the read snapshot. Returns an error if this is a create-table transaction.
686+
// To get the `Option<SnapshotRef>` directly, use the `read_snapshot_opt` field.
687687
fn read_snapshot(&self) -> DeltaResult<&Snapshot> {
688688
self.read_snapshot_opt.as_deref().ok_or_else(|| {
689689
Error::internal_error("read_snapshot() called on create-table transaction")

0 commit comments

Comments
 (0)