Explorar o código

Fix example use of Cell.String(). Fixes #316.

Geoffrey J. Teale %!s(int64=8) %!d(string=hai) anos
pai
achega
590f88edeb
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      README.org

+ 1 - 1
README.org

@@ -40,7 +40,7 @@ func main() {
     for _, sheet := range xlFile.Sheets {
         for _, row := range sheet.Rows {
             for _, cell := range row.Cells {
-                text, _ := cell.String()
+                text := cell.String()
                 fmt.Printf("%s\n", text)
             }
         }