Skip to content

Commit

Permalink
chore: Fix GETTING_STARTED.md inconsistency (#243)
Browse files Browse the repository at this point in the history
  • Loading branch information
nukeop authored Jan 6, 2024
1 parent b157bb5 commit 4117aaf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions GETTING_STARTED.md
Original file line number Diff line number Diff line change
Expand Up @@ -433,9 +433,9 @@ In the example shown above, metadata is consumed in an inner loop within the mai
// While there is newer metadata.
while !format.metadata().is_latest() {
// Pop the old head of the metadata queue.
reader.metadata().pop();
format.metadata().pop();

if let Some(rev) = reader.metadata().current() {
if let Some(rev) = format.metadata().current() {
// Consume the new metadata at the head of the metadata queue.
}
}
Expand Down

0 comments on commit 4117aaf

Please sign in to comment.