Update doc for Device.ListForwards()

This commit is contained in:
timoxa0 2024-06-14 21:47:28 +05:00
parent dba4311d8a
commit a333df0af4

View file

@ -175,13 +175,13 @@ func (c *Device) KillForwardAll() error {
}
/*
KillForwardAll, from the official adb command's docs:
ListForwards, from the official adb command's docs:
Remove all forward network connections.
List all existing forward connections from this server.
Source: https://android.googlesource.com/platform/packages/modules/adb/+/refs/heads/main/SERVICES.TXT
*/
func (c *Device) ListForward() ([]Forward, error) {
func (c *Device) ListForwards() ([]Forward, error) {
req := "list-forward"
resp, err := c.getAttribute(req)
if err != nil {