Skip to content

Commit

Permalink
Electron README cleanup [ci skip]
Browse files Browse the repository at this point in the history
use `XLSX` rather than `X` in README
  • Loading branch information
georgiebin committed Mar 7, 2018
1 parent be4e21c commit 73a5e50
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion demos/electron/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ var dialog = require('electron').remote.dialog;

/* show a file-open dialog and read the first selected file */
var o = dialog.showOpenDialog({ properties: ['openFile'] });
var workbook = X.readFile(o[0]);
var workbook = XLSX.readFile(o[0]);

/* show a file-save dialog and write the workbook */
var o = dialog.showSaveDialog();
Expand Down

0 comments on commit 73a5e50

Please sign in to comment.