Better docs?

This commit is contained in:
William Shepherd 2018-11-29 16:01:15 -06:00
parent 44ee343a31
commit 323426d517
2 changed files with 2 additions and 2 deletions

View file

@ -115,7 +115,7 @@ export interface IDailyMeasures {
/** The number of times a conflicted merge was aborted by the user */
readonly mergeAbortedAfterConflictsCount: number
/** The number of commits that will go unattributed on dotcom */
/** The number of commits that will go unattributed to GitHub users */
readonly unattributedCommits: number
/** The number of times the user made a commit to a GHE repo */

View file

@ -55,6 +55,6 @@ These are general metrics about feature usage and specific feature behaviors. Th
| `mergedWithConflictWarningHintCount` | The number of times the user has merged after seeing the 'you have XX conflicted files' warning. | To understand how frequently people are merging even though they know there will be conflicts |
| `mergeSuccessAfterConflictsCount` | The number of times the user successfully completes a merge after a merge conflict. | To understand how effectively users are able to resolve conflicts and complete their merge successfully |
| `mergeAbortedAfterConflictsCount` | The number of times the user aborts a merge after a merge conflict. | To understand the frequency of merges that are never completed after attempting to merge and hitting a merge conflict |
| `unattributedCommits` | The number of commits that will go unattributed on GitHub. | To understand how frequently commits in GitHub Desktop are unattributed and how highly we should prioritize design for those instances |
| `unattributedCommits` | The number of commits that will go unattributed to GitHub users. | To understand how frequently commits in GitHub Desktop are unattributed and how highly we should prioritize design for those instances |
| `gheCommits` | The number of times the user made a commit to a GHE repo. | To understand the total percentage of commits made to GitHub Enterprise repos to help prioritize our work associated with enterprise use of GitHub Desktop compared to GitHub |
| `dotcomCommits` | The number of time the user made a commit to a repo hosted on Dotcom. | To understand the total percentage of commits made to GitHub repos compared to GitHub Enterprise and other remotes to help prioritize our work and focus areas |