From f596ce0c1afc49b7dadb276741dcd5c509c0db2b Mon Sep 17 00:00:00 2001 From: graelo Date: Sun, 1 Sep 2024 02:22:43 +0200 Subject: [PATCH] chore: obey clippy --- src/tmux.rs | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/tmux.rs b/src/tmux.rs index 35c6f27..680cce1 100644 --- a/src/tmux.rs +++ b/src/tmux.rs @@ -179,9 +179,11 @@ pub fn available_panes() -> Result> { result } -/// Returns tmux global options as a `HashMap`. The prefix argument is for -/// convenience, in order to target only some of our options. For instance, -/// `get_options("@copyrat-")` will return a `HashMap` which keys are tmux options names like `@copyrat-command`, and associated values. +/// Returns tmux global options as a `HashMap`. +/// +/// The prefix argument is for convenience, in order to target only some of our options. For +/// instance, `get_options("@copyrat-")` will return a `HashMap` which keys are tmux options names +/// like `@copyrat-command`, and associated values. /// /// # Example /// ```get_options("@copyrat-")```