From 22bd4e2447f3e6e2ec46700b5e08bd5ef70c501b Mon Sep 17 00:00:00 2001 From: Michael Hall Date: Wed, 24 Apr 2024 14:44:30 +1000 Subject: [PATCH] chore: fmt --- 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 130e46f1a..daaf08351 100644 --- a/src/bam/mod.rs +++ b/src/bam/mod.rs @@ -702,7 +702,7 @@ impl IndexedReader { /// The start / stop coordinates will take i64 (the correct type as of htslib's 'large /// coordinates' expansion), i32, u32, and u64 (with a possible panic! if the coordinate /// won't fit an i64). - /// + /// /// `start` and `stop` are zero-based. `start` is inclusive, `stop` is exclusive. /// /// This replaces the old fetch and fetch_str implementations.