Skip to content

Commit 083e8db

Browse files
committed
Correctly use sentence case in UI
1 parent 65f77c5 commit 083e8db

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/settings/tab.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ export default class GitHubSyncSettingsTab extends PluginSettingTab {
2020

2121
let tokenInput: TextComponent;
2222
new Setting(containerEl)
23-
.setName("GitHub Token")
23+
.setName("GitHub token")
2424
.setDesc(
2525
"A personal access token or a fine-grained token with read and write access to your repository",
2626
)

src/views/conflicts-resolution/view.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export class ConflictsResolutionView extends ItemView {
2424
}
2525

2626
getDisplayText() {
27-
return "Conflicts Resolution";
27+
return "Conflicts resolution";
2828
}
2929

3030
private resolveAllConflicts(resolutions: ConflictResolution[]) {

0 commit comments

Comments
 (0)