From 5492caa66899afc377be5fafec34e253be6ed795 Mon Sep 17 00:00:00 2001 From: Zach Klippenstein Date: Sat, 11 Apr 2015 17:00:58 -0700 Subject: [PATCH] Lint fixes. --- host_client.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/host_client.go b/host_client.go index 4d27fdc..98b9609 100644 --- a/host_client.go +++ b/host_client.go @@ -1,5 +1,5 @@ /* -Go interface to the Android Debug Bridge (adb). +Package goadb is a Go interface to the Android Debug Bridge (adb). The client/server spec is defined at https://android.googlesource.com/platform/system/core/+/master/adb/OVERVIEW.TXT. @@ -19,7 +19,7 @@ import ( type Dialer func() (*wire.Conn, error) /* -Interacts with host services on the adb server. +HostClient interacts with host services on the adb server. Eg. dialer := &HostClient{wire.Dial}