From c8c8401680194d7a849c03593c330c0326624fa9 Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Mon, 20 Feb 2017 16:04:04 +0100 Subject: [PATCH] Doc for Store::update() --- libimagstore/src/store.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/libimagstore/src/store.rs b/libimagstore/src/store.rs index 419a96f2..c0e6410a 100644 --- a/libimagstore/src/store.rs +++ b/libimagstore/src/store.rs @@ -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) }