Skip to content

Commit

Permalink
Fix typo in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
anergictcell committed May 22, 2024
1 parent 3cac3f6 commit 171c31b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fasta/writer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ impl<W: std::io::Write, R: std::io::Read + std::io::Seek> Writer<W, R> {
}
}

/// Unwraps this Writer<W>, returning the underlying writer.
/// Unwraps this `Writer<W>`, returning the underlying writer.
pub fn into_inner(self) -> Result<W, ReadWriteError> {
match self.inner.into_inner() {
Ok(res) => Ok(res),
Expand Down

0 comments on commit 171c31b

Please sign in to comment.