Fix typo in is_external_link_storeid() helper fn

This commit is contained in:
Matthias Beyer 2016-09-05 18:52:42 +02:00
parent c23a11060f
commit 1dfe877cd9

View file

@ -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> {