Skip to content

Commit eff9f69

Browse files
committed
Fix capitalization
1 parent 54ed596 commit eff9f69

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/TodoList.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,14 +98,14 @@ export default defineComponent({
9898
methods: {
9999
/**
100100
* Complete task based on task ID.
101-
* @param id task id
101+
* @param id task ID
102102
*/
103103
completeTodo: function (id: number) {
104104
store.dispatch("completeTask", id);
105105
},
106106
/**
107107
* Delete task based on task ID.
108-
* @param id task id
108+
* @param id task ID
109109
*/
110110
deleteTodo: function (id: number) {
111111
store.dispatch("deleteTask", id);

0 commit comments

Comments
 (0)