Skip to content
This repository was archived by the owner on Feb 23, 2024. It is now read-only.

Commit b0ea14e

Browse files
committed
fix(deps): Fix a doc test using Alignment::pretty
1 parent 0a7e617 commit b0ea14e

File tree

1 file changed

+1
-1
lines changed
  • bio_edit/src/alignment/pairwise

1 file changed

+1
-1
lines changed

Diff for: bio_edit/src/alignment/pairwise/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@
109109
//! let y = b"AAAAACGTACGTACGTAAAA";
110110
//! let mut aligner = Aligner::with_capacity_and_scoring(x.len(), y.len(), scoring);
111111
//! let alignment = aligner.custom(x, y);
112-
//! println!("{}", alignment.pretty(x, y));
112+
//! println!("{}", alignment.pretty(x, y, 60));
113113
//! assert_eq!(alignment.score, 2);
114114
//! assert_eq!(
115115
//! alignment.operations,

0 commit comments

Comments
 (0)