Skip to content

Commit 0f968c3

Browse files
committed
Fix spelling mistake in comments
1 parent f10284e commit 0f968c3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/store/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -619,7 +619,7 @@ export default createStore({
619619
(dateMultiplier < 1 ? 1 - dateMultiplier : dateMultiplier - 1)) /
620620
Math.max(state.user.tasksCompletedToday, 1),
621621
0,
622-
); //get the amount of rating poings earned based on user rating, task repeat multiplier and number of tasks completed today
622+
); //get the amount of rating points earned based on user rating, task repeat multiplier and number of tasks completed today
623623
state.user.rating = Math.max(state.user.rating, 0); //make sure user rating is not below 0
624624
const pointsEarned: number = Math.max(
625625
Math.floor(

0 commit comments

Comments
 (0)