Skip to content

Commit 1f18d93

Browse files
committed
f fix over-100 lines
1 parent 042275a commit 1f18d93

File tree

1 file changed

+9
-7
lines changed
  • background-processor/src

1 file changed

+9
-7
lines changed

background-processor/src/lib.rs

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -48,14 +48,16 @@ impl BackgroundProcessor {
4848
/// Start a background thread that takes care of responsibilities enumerated in the top-level
4949
/// documentation.
5050
///
51-
/// If `persist_manager` returns an error, then this thread will return said error (and `start()`
52-
/// will need to be called again to restart the `BackgroundProcessor`). Users should wait on
53-
/// [`thread_handle`]'s `join()` method to be able to tell if and when an error is returned, or
54-
/// implement `persist_manager` such that an error is never returned to the `BackgroundProcessor`
51+
/// If `persist_manager` returns an error, then this thread will return said error (and
52+
/// `start()` will need to be called again to restart the `BackgroundProcessor`). Users should
53+
/// wait on [`thread_handle`]'s `join()` method to be able to tell if and when an error is
54+
/// returned, or implement `persist_manager` such that an error is never returned to the
55+
/// `BackgroundProcessor`
5556
///
56-
/// `persist_manager` is responsible for writing out the [`ChannelManager`] to disk, and/or uploading
57-
/// to one or more backup services. See [`ChannelManager::write`] for writing out a [`ChannelManager`].
58-
/// See [`FilesystemPersister::persist_manager`] for Rust-Lightning's provided implementation.
57+
/// `persist_manager` is responsible for writing out the [`ChannelManager`] to disk, and/or
58+
/// uploading to one or more backup services. See [`ChannelManager::write`] for writing out a
59+
/// [`ChannelManager`]. See [`FilesystemPersister::persist_manager`] for Rust-Lightning's
60+
/// provided implementation.
5961
///
6062
/// [`thread_handle`]: BackgroundProcessor::thread_handle
6163
/// [`ChannelManager`]: lightning::ln::channelmanager::ChannelManager

0 commit comments

Comments
 (0)