docs(adb): add blank lines to break list continuations

This commit is contained in:
Rudxain 2025-03-06 02:44:30 -04:00
commit ce84dedd29
No known key found for this signature in database
GPG key ID: 0DAC837DDEF8E96C

View file

@ -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<String, String> {
self.0.0.args(["getprop", key]);
self.0.run()