Skip to content

Commit

Permalink
Fix docs typo (#470)
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidNepozitek authored May 7, 2021
1 parent e5e0a60 commit 79eaa00
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/_docs/40-fasterlog-basics.md
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ end of iteration, or because we are waiting for a page read or commit to complet
while (!iter.GetNext(out byte[] result, out int entryLength, out long currentAddress, out long nextAddress))
{
if (currentAddress >= 100_000_000) return;
await iter.WaitAsyc();
await iter.WaitAsync();
}
// Process record
}
Expand Down

0 comments on commit 79eaa00

Please sign in to comment.