Skip to content

Commit e341a76

Browse files
committed
✏️ Fix typo
1 parent 15413bb commit e341a76

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

Docs/Sorting.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Most fields of the JSON can be used for sorting
1919
- `calendar.label`
2020
- `calendar.color`
2121
- `title.full`
22-
- `title.description`
22+
- `title.label`
2323
- `title.icon`
2424
- `schedule.start.at`
2525
- `schedule.start.in`

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Example output in JSON
3838
},
3939
"title": {
4040
"full": "🏆 Release plan",
41-
"description": "Release plan",
41+
"label": "Release plan",
4242
"icon": "🏆"
4343
},
4444
"schedule": {

Schemas/event-example.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
},
99
"title": {
1010
"full": "🏆 Release plan",
11-
"description": "Release plan",
11+
"label": "Release plan",
1212
"icon": "🏆"
1313
},
1414
"schedule": {

Schemas/event-schema.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
"full": {
3535
"type": "string"
3636
},
37-
"description": {
37+
"label": {
3838
"type": "string"
3939
},
4040
"icon": {
@@ -43,7 +43,7 @@
4343
},
4444
"required": [
4545
"full",
46-
"description",
46+
"label",
4747
"icon"
4848
]
4949
},

Sources/Cli/Util/Options.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ class Sorting {
148148
"calendar.label", // String
149149
"calendar.color", // String
150150
"title.full", // String
151-
"title.description", // String
151+
"title.label", // String
152152
"title.icon", // String
153153
"schedule.start.at", // Date
154154
"schedule.start.in", // Int

0 commit comments

Comments
 (0)