Explorar o código

Merge pull request #134 from jangler/master

Fix doc comment for XLSXReaderError.Error()
Shawn Milochik %!s(int64=10) %!d(string=hai) anos
pai
achega
b177c2e9cd
Modificáronse 1 ficheiros con 2 adicións e 2 borrados
  1. 2 2
      lib.go

+ 2 - 2
lib.go

@@ -17,8 +17,8 @@ type XLSXReaderError struct {
 	Err string
 }
 
-// String() returns a string value from an XLSXReaderError struct in
-// order that it might comply with the os.Error interface.
+// Error returns a string value from an XLSXReaderError struct in order
+// that it might comply with the builtin.error interface.
 func (e *XLSXReaderError) Error() string {
 	return e.Err
 }