From 01383b52786cc20bd59a79add03f96179b8f731b Mon Sep 17 00:00:00 2001 From: rLannes Date: Wed, 13 Nov 2024 15:11:42 -0500 Subject: [PATCH] typo --- src/bam/flags.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bam/flags.rs b/src/bam/flags.rs index cc1909a92..cad423e12 100644 --- a/src/bam/flags.rs +++ b/src/bam/flags.rs @@ -5,7 +5,7 @@ //! For example, the following code tests if the read flag has the FIRST_IN_PAIR flag set and the MATE_UNMAPPED flag not set: //! ``` //! use rust_htslib::bam::flags{Flag, check_flag}; -//! # let read_flag = record.flag(); in general this is the way to obtian a flag. +//! let read_flag = record.flag(); // in general this is the way to obtain a flag. //! let read_flag = 64; //! assert_eq!(check_flag(read_flag, Flag::FIRST_IN_PAIR, Flag::MATE_UNMAPPED), true); //! ```