Commit 4b11a713c811c6e216182e287a3f3135bb4fabb2

Anton Maltsev 2024-01-19T18:05:33

Removed doc attribute on private function

1
2
3
4
5
6
7
8
9
10
11
12
diff --git a/src/lib.rs b/src/lib.rs
index fd9243b..9976977 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -519,7 +519,6 @@ impl TOTP {
 
     /// Parse the TOTP parts from the standard otpauth URL
     #[cfg(feature = "otpauth")]
-    #[cfg_attr(docsrs, doc(cfg(feature = "otpauth")))]
     fn parts_from_url<S: AsRef<str>>(
         url: S,
     ) -> Result<(Algorithm, usize, u8, u64, Vec<u8>, Option<String>, String), TotpUrlError> {