Thomas 2 жил өмнө
parent
commit
11913127da
1 өөрчлөгдсөн 1 нэмэгдсэн , 1 устгасан
  1. 1 1
      src/lib.rs

+ 1 - 1
src/lib.rs

@@ -244,7 +244,7 @@ pub fn format_seq(name: &str, sequence: &str, line_size: usize) -> String {
     .chunks(line_size)
     .map(|c| c.iter().collect::<String>())
     .collect::<Vec<String>>()
-    .join("");
+    .join("\n");
     format!(">{name}\n{res}")
 }