Correctly use sentence case in UI

This commit is contained in:
Silvano Cerza 2025-03-20 09:49:49 +01:00
parent 65f77c5720
commit 083e8db779
2 changed files with 2 additions and 2 deletions

View file

@ -20,7 +20,7 @@ export default class GitHubSyncSettingsTab extends PluginSettingTab {
let tokenInput: TextComponent;
new Setting(containerEl)
.setName("GitHub Token")
.setName("GitHub token")
.setDesc(
"A personal access token or a fine-grained token with read and write access to your repository",
)

View file

@ -24,7 +24,7 @@ export class ConflictsResolutionView extends ItemView {
}
getDisplayText() {
return "Conflicts Resolution";
return "Conflicts resolution";
}
private resolveAllConflicts(resolutions: ConflictResolution[]) {