summaryrefslogtreecommitdiffstats
path: root/libimagentrylink
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2016-09-05 18:52:42 +0200
committerMatthias Beyer <mail@beyermatthias.de>2016-09-05 18:52:42 +0200
commit1dfe877cd9eb32d62479da017837b64f56b6b8ed (patch)
treeb030b7fafdd6d16062639540e6a2b2c525d19470 /libimagentrylink
parentc23a11060fb6d137696a350188ee118363aa4f09 (diff)
Fix typo in is_external_link_storeid() helper fn
Diffstat (limited to 'libimagentrylink')
-rw-r--r--libimagentrylink/src/external.rs4
1 files 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<Url> {