From 12c930d9118941997336deb9ef6c676aa35b1cd9 Mon Sep 17 00:00:00 2001 From: tcmal Date: Fri, 30 Aug 2024 15:38:27 +0100 Subject: Some more docs --- src/helpers.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/helpers.rs') diff --git a/src/helpers.rs b/src/helpers.rs index e67aecc..5a2844d 100644 --- a/src/helpers.rs +++ b/src/helpers.rs @@ -6,7 +6,7 @@ use crate::{ }; use std::{ffi::OsStr, process::Command}; -/// Syntax sugar for creating [`Keybind`]s. This is helpful for writing [`crate::config::KEYBINDS`] +/// Syntax sugar for creating [`Keybind`](`crate::keys::Keybind`)s. This is helpful for writing [`crate::config::KEYBINDS`] /// /// ```rust /// /// Control + Shift + t prints "It Works!" @@ -23,7 +23,7 @@ macro_rules! bind { }; } -/// Syntax sugar for creating [`ButtonBind`]s. See also: [`self::bind`]. +/// Syntax sugar for creating [`ButtonBind`](`crate::buttons::ButtonBind`)s. See also: [`crate::bind`]. #[macro_export] macro_rules! bind_btn { ($mod:expr , $key:ident -> $action:expr) => { @@ -35,7 +35,7 @@ macro_rules! bind_btn { }; } -/// Execute the given command with arguments, disowning the process. +/// Execute the given command with arguments. pub fn spawn(cmd: &str, args: I) where I: IntoIterator, -- cgit v1.2.3