Procházet zdrojové kódy

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

Geoffrey J. Teale před 8 roky
rodič
revize
590f88edeb
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  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)
             }
         }