From 1dfe877cd9eb32d62479da017837b64f56b6b8ed Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Mon, 5 Sep 2016 18:52:42 +0200 Subject: [PATCH] Fix typo in is_external_link_storeid() helper fn --- libimagentrylink/src/external.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libimagentrylink/src/external.rs b/libimagentrylink/src/external.rs index 1a000eba..45972bf5 100644 --- a/libimagentrylink/src/external.rs +++ b/libimagentrylink/src/external.rs @@ -94,8 +94,8 @@ pub trait ExternalLinker : InternalLinker { /// Check whether the StoreId starts with `/link/external/` pub fn is_external_link_storeid(id: &StoreId) -> bool { - debug!("Checking whether this is a link/external/*: '{:?}'", id); - id.local().starts_with("link/external") + debug!("Checking whether this is a 'links/external/': '{:?}'", id); + id.local().starts_with("links/external") } fn get_external_link_from_file(entry: &FileLockEntry) -> Result {