From 49347caa62165b4d835700aa38dcb571b3d907b3 Mon Sep 17 00:00:00 2001 From: Michael Macias Date: Mon, 3 Mar 2025 15:39:46 -0600 Subject: [PATCH] bgzf/gzi/index: Fix typos --- noodles-bgzf/src/gzi/index.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/noodles-bgzf/src/gzi/index.rs b/noodles-bgzf/src/gzi/index.rs index aab1eef6b..de571b7c5 100644 --- a/noodles-bgzf/src/gzi/index.rs +++ b/noodles-bgzf/src/gzi/index.rs @@ -6,8 +6,8 @@ use crate::VirtualPosition; /// /// A gzip index holds compressed-uncompressed position pairs. /// -/// Like this physical index, this does _not_ include the position of the first block, which is -/// implicity at 0. +/// Like the physical index, this does _not_ include the position of the first block, which is +/// implicitly at 0. #[derive(Clone, Debug, Default, Eq, PartialEq)] pub struct Index(Vec<(u64, u64)>);