diff --git a/src/get.rs b/src/get.rs index 0e2571c..a773517 100644 --- a/src/get.rs +++ b/src/get.rs @@ -247,7 +247,7 @@ where } /// Gets entry information and metadata for a certain key. -pub async fn info(cache: P, key: K) -> Result, Error> +pub async fn entry(cache: P, key: K) -> Result, Error> where P: AsRef, K: AsRef, @@ -439,7 +439,7 @@ where } /// Gets entry information and metadata for a certain key. -pub fn info_sync(cache: P, key: K) -> Result, Error> +pub fn entry_sync(cache: P, key: K) -> Result, Error> where P: AsRef, K: AsRef,