Doc for Store::update()

This commit is contained in:
Matthias Beyer 2017-02-20 16:04:04 +01:00
parent 77b10e20cb
commit c8c8401680

View file

@ -597,6 +597,9 @@ impl Store {
}
/// Return the `FileLockEntry` and write to disk
///
/// See `Store::_update()`.
///
pub fn update<'a>(&'a self, mut entry: FileLockEntry<'a>) -> Result<()> {
self._update(&mut entry, false).map_err_into(SEK::UpdateCallError)
}