From ce84dedd29c59390419fc69e6ddc383bb4a2f5e4 Mon Sep 17 00:00:00 2001 From: Rudxain <76864299+Rudxain@users.noreply.github.com> Date: Thu, 6 Mar 2025 02:44:30 -0400 Subject: [PATCH] docs(adb): add blank lines to break list continuations --- src/core/adb.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/core/adb.rs b/src/core/adb.rs index ef115b3..52a3b78 100644 --- a/src/core/adb.rs +++ b/src/core/adb.rs @@ -81,6 +81,7 @@ impl ACommand { /// - USB /// - TCP/IP: WIFI, Ethernet, etc... /// - Local emulators + /// /// Status can be (but not limited to): /// - "unauthorized" /// - "device" @@ -158,7 +159,8 @@ impl ShellCommand { /// - `int` /// - chars /// - etc... - /// So to avoid lossy conversions, we return strs. + /// + /// So to avoid lossy conversions, we return strs pub fn getprop(mut self, key: &str) -> Result { self.0.0.args(["getprop", key]); self.0.run()