Gyu-Ho Lee hace 11 años
padre
commit
798ffb70bb
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. 2 2
      README.org

+ 2 - 2
README.org

@@ -27,8 +27,8 @@ import (
 
 func main() {
     excelFileName := "/home/tealeg/foo.xlsx"
-    xlFile, error := xlsx.OpenFile(excelFileName)
-    if error != nil {
+    xlFile, err := xlsx.OpenFile(excelFileName)
+    if err != nil {
         ...
     }
     for _, sheet := range xlFile.Sheets {