Skip to content

Commit 9adf634

Browse files
committed
Fix minor issues in readme
1 parent c641ebe commit 9adf634

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

readme.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -732,9 +732,9 @@ report.issues.forEach(issue => {
732732
});
733733
report.mergeRequests.forEach(mergeRequest => {
734734
// time records on merge requests
735-
console.log(mergeRequests.times);
735+
console.log(mergeRequest.times);
736736
// user of single time record
737-
console.log(issue.times[0].user);
737+
console.log(mergeRequest.times[0].user);
738738
});
739739
```
740740

@@ -749,7 +749,7 @@ is the total amount of time spent in the given time frame.
749749
#### Why 'total spent' and 'spent' are showing different amounts.
750750

751751
gtt can only track time records from notes/comments. If you start your
752-
issue or merge request with `/spent [time]` in its description, gtt won't
752+
issue or merge request with `/spend [time]` in its description, gtt won't
753753
take it into consideration (for now).
754754

755755
## contributing

0 commit comments

Comments
 (0)