From c0a593690348ef5f152b99477f0dcbf112354d94 Mon Sep 17 00:00:00 2001 From: jeff-k Date: Fri, 12 Jul 2024 18:12:03 +0100 Subject: [PATCH] ; --- README.md | 2 +- bio-seq/src/lib.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 395f15e..75d35ea 100644 --- a/README.md +++ b/README.md @@ -54,7 +54,7 @@ let seq: &'static SeqSlice = dna!("CGCTAGCTACGATCGCAT"); // Static sequences can also be copied as kmers let kmer: Kmer = dna!("CGCTAGCTACGATCGCAT").into(); // or with the kmer! macro: -let kmer = kmer!("CGCTAGCTACGATCGCAT") +let kmer = kmer!("CGCTAGCTACGATCGCAT"); // `Seq`s can be allocated on the heap like `String`s are: let s: String = "hello!".into(); diff --git a/bio-seq/src/lib.rs b/bio-seq/src/lib.rs index 721fa6c..36e56d2 100644 --- a/bio-seq/src/lib.rs +++ b/bio-seq/src/lib.rs @@ -56,7 +56,7 @@ //! // Static sequences can also be copied as kmers //! let kmer: Kmer = dna!("CGCTAGCTACGATCGCAT").into(); //! // or with the kmer! macro: -//! let kmer = kmer!("CGCTAGCTACGATCGCAT") +//! let kmer = kmer!("CGCTAGCTACGATCGCAT"); //! //! // `Seq`s can be allocated on the heap like `String`s are: //! let s: String = "hello!".into();