Skip to content

Commit

Permalink
fix doctest
Browse files Browse the repository at this point in the history
  • Loading branch information
tibvdm committed Apr 3, 2024
1 parent 8300286 commit 6f79733
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion fa-compression/src/decode.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ static PREFIXES: [&str; 3] = ["EC:", "GO:", "IPR:IPR"];
/// # Examples
///
/// ```
/// use fa_compression::decode::decode;
/// use fa_compression::decode;
///
/// let input = &[ 44, 44, 44, 189, 17, 26, 56, 173, 18, 116, 117, 225, 67, 116, 110, 17, 153, 39 ];
/// let result = decode(input);
Expand Down
2 changes: 1 addition & 1 deletion fa-compression/src/encode.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ use crate::{
/// # Examples
///
/// ```
/// use fa_compression::encode::encode;
/// use fa_compression::encode;
///
/// let input = "IPR:IPR016364;EC:1.1.1.-;GO:0009279";
/// let encoded = encode(input);
Expand Down

0 comments on commit 6f79733

Please sign in to comment.