From 6340ecb17b35324f81177beb4a5330187b427b6a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ant=C3=B4nio=20Camargo?= Date: Sat, 19 Jul 2025 16:47:37 -0300 Subject: [PATCH] Fix multiline comment in the `python.rs` module --- src/python.rs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/python.rs b/src/python.rs index beb6e59..0b09357 100644 --- a/src/python.rs +++ b/src/python.rs @@ -188,11 +188,11 @@ impl Record { /// -------- /// normalize_seq: A function to normalize nucleotide sequence strings. /// - // Notes - // ----- - // The `normalize` method is designed for nucleotide sequences only. If - // used with protein sequences, it will incorrectly process amino acid - // characters as if they were nucleotides. + /// Notes + /// ----- + /// The `normalize` method is designed for nucleotide sequences only. If + /// used with protein sequences, it will incorrectly process amino acid + /// characters as if they were nucleotides. #[pyo3(signature = (iupac=false))] pub fn normalize(&mut self, iupac: bool) -> PyResult<()> { if let Some(s) = normalize(self.seq.as_bytes(), iupac) {