From c458cf693e61aa36ee0f2401549de7d898c35ace Mon Sep 17 00:00:00 2001 From: lifegpc Date: Sun, 26 Mar 2023 02:17:12 +0000 Subject: [PATCH] Fix cargo doc warning --- src/exif.rs | 2 +- src/webclient.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/exif.rs b/src/exif.rs index cbbaf84..27c5d94 100644 --- a/src/exif.rs +++ b/src/exif.rs @@ -472,7 +472,7 @@ impl ExifValue { } /// Check the ok status indicator. - /// After a to conversion, this indicator shows whether the conversion was successful. + /// After a `to` conversion, this indicator shows whether the conversion was successful. pub fn ok(&self) -> bool { if self.value.is_null() { return false; diff --git a/src/webclient.rs b/src/webclient.rs index 5eaa7be..7a4901e 100644 --- a/src/webclient.rs +++ b/src/webclient.rs @@ -178,7 +178,7 @@ impl WebClient { /// /// returns true if readed successfully. /// # Note - /// If read failed, will clean all entries in the current [CookieJar] + /// If read failed, will clean all entries in the current [ManagedCookieJar] pub fn read_cookies(&self, file_name: &str) -> bool { let mut c = self.get_cookies_as_mut(); let r = c.read(file_name);