Skip to content

Commit

Permalink
sentence case
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanhalliday committed Apr 6, 2024
1 parent dfcc5e0 commit b60f48f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ When you click the icon or run the command to generate a reverse prompt, it take

After installing the Reverse Prompter plugin, you can access it through the command palette or the plugin sidebar.

Simply click on the plugin's icon or the command "Generate Reverse Prompt".
Simply click on the plugin's icon or the command "Generate reverse prompt".

## Support

Expand Down
4 changes: 2 additions & 2 deletions main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ export default class ReversePrompter extends Plugin {
async onload() {
await this.loadSettings();

this.addRibbonIcon('step-forward', 'Generate Reverse Prompt', async (evt: MouseEvent) => {
this.addRibbonIcon('step-forward', 'Generate reverse prompt', async (evt: MouseEvent) => {
const view = this.app.workspace.getActiveViewOfType(MarkdownView);
if (view) {
await this.generateReversePrompt(view, view.editor);
Expand All @@ -178,7 +178,7 @@ export default class ReversePrompter extends Plugin {

this.addCommand({
id: 'reverse-prompt',
name: 'Generate Reverse Prompt',
name: 'Generate reverse prompt',
editorCallback: async (editor: Editor, view: MarkdownView) => {
await this.generateReversePrompt(view, editor);
}
Expand Down

0 comments on commit b60f48f

Please sign in to comment.