From e07c911bf6a3826311910514f6825b2c8bd7e0a9 Mon Sep 17 00:00:00 2001 From: Michael Hall Date: Wed, 24 Apr 2024 14:21:37 +1000 Subject: [PATCH] docs: typo --- src/bam/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bam/mod.rs b/src/bam/mod.rs index bcc9f9236..fbecd6810 100644 --- a/src/bam/mod.rs +++ b/src/bam/mod.rs @@ -677,7 +677,7 @@ impl IndexedReader { /// /// Both iterating (with [.records()](trait.Read.html#tymethod.records)) and looping without allocation (with [.read()](trait.Read.html#tymethod.read) are a two stage process: /// 1. 'fetch' the region of interest - /// 2. iter/loop trough the reads. + /// 2. iter/loop through the reads. /// /// Example: /// ```