We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2593f77 commit 6987e16Copy full SHA for 6987e16
1 file changed
README.md
@@ -37,13 +37,14 @@ more sensible naming applied to a few attributes. The API is pretty simple:
37
```swift
38
import CoreXLSX
39
40
-guard let file = XLSXFile(filepath: "./categories.xlsx") else {
41
- fatalError("XLSX file corrupted or does not exist")
+let filepath = "./categories.xlsx"
+guard let file = XLSXFile(filepath: filepath) else {
42
+ fatalError("XLSX file at \(filepath) is corrupted or does not exist")
43
}
44
45
for (worksheetName, path) in try file.parseWorksheetPathsAndNames() {
46
if let worksheetName = worksheetName {
- print("this worksheet has a name: \(worksheetName)")
47
+ print("This worksheet has a name: \(worksheetName)")
48
49
50
let worksheet = try file.parseWorksheet(at: path)
0 commit comments