From d19e1713d637e316ea368a02685b92c57d1bb627 Mon Sep 17 00:00:00 2001 From: Karan Misra Date: Mon, 9 Dec 2013 03:26:56 +0530 Subject: [PATCH] improve doc --- i2c/i2c.go | 1 + 1 file changed, 1 insertion(+) diff --git a/i2c/i2c.go b/i2c/i2c.go index 352141f..8926b2a 100644 --- a/i2c/i2c.go +++ b/i2c/i2c.go @@ -20,6 +20,7 @@ const ( rd = 0x0001 ) +// A Bus implements access to the I2C two wire bus. type Bus interface { // Read a byte from the given address. ReadByte(addr byte) (value byte, err error)