Merge pull request #438 from matthiasbeyer/libimagentrylink/link-type-pub

Add missing keyword "pub" for Link type
This commit is contained in:
Matthias Beyer 2016-05-27 12:36:36 +02:00
commit 3e4b339615
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ use crypto::sha1::Sha1;
use crypto::digest::Digest;
/// "Link" Type, just an abstraction over `FileLockEntry` to have some convenience internally.
struct Link<'a> {
pub struct Link<'a> {
link: FileLockEntry<'a>
}