From 080fef93bb1d797702ec7914f2d1f3730688fe85 Mon Sep 17 00:00:00 2001 From: Rudxain <76864299+Rudxain@users.noreply.github.com> Date: Fri, 24 Jan 2025 01:00:44 -0400 Subject: [PATCH] docs(list_users): fmt --- src/core/adb.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/core/adb.rs b/src/core/adb.rs index c520056..7dfdb61 100644 --- a/src/core/adb.rs +++ b/src/core/adb.rs @@ -279,10 +279,10 @@ impl PmCommand { .into_iter() .map(|p| PackageId::new(p).expect("One of these is wrong: `PackId` regex, ADB implementation. Or the spec now allows a wider char-set")).collect()) } - #[allow(clippy::doc_markdown, reason = "Multi URL")] + /// `list users` sub-command (header-less). - /// - https://source.android.com/docs/devices/admin/multi-user-testing - /// - https://stackoverflow.com/questions/37495126/android-get-list-of-users-and-profile-name + /// - + /// - pub fn list_users(mut self) -> Result, String> { self.0 .0 .0.args(["list", "users"]); // is it actually multi-line?