chore: spelling

`s/pathSheets/pathsheets/g` in `cmd_list` for consistency elsewhere.
This commit is contained in:
Chris Lane 2020-11-27 22:26:14 -05:00
parent 606092e288
commit a58294859e
1 changed files with 2 additions and 2 deletions

View File

@ -37,8 +37,8 @@ func cmdList(opts map[string]interface{}, conf config.Config) {
// sheets with local sheets), here we simply want to create a slice
// containing all sheets.
flattened := []sheet.Sheet{}
for _, pathSheets := range cheatsheets {
for _, s := range pathSheets {
for _, pathsheets := range cheatsheets {
for _, s := range pathsheets {
flattened = append(flattened, s)
}
}