Skip to content

Commit 569935c

Browse files
committed
Fix types
1 parent 7537bc9 commit 569935c

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

Main.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ public List<Result> Query(Query query)
5353
new Result
5454
{
5555
Title = "Search OneNote pages",
56-
SubTitle = $"Type \"{Keywords.NotebookExplorer}\" to search by notebook structure or select this option",
56+
SubTitle = $"Type \"{Keywords.NotebookExplorer}\" or select this option to search by notebook structure ",
5757
AutoCompleteText = $"{query.ActionKeyword} {Keywords.NotebookExplorer}",
5858
IcoPath = Icons.Logo,
5959
Score = 2000,
@@ -66,7 +66,7 @@ public List<Result> Query(Query query)
6666
new Result
6767
{
6868
Title = "See recent pages",
69-
SubTitle = $"Type \"{Keywords.RecentPages}\" to see last modified pages or select this option",
69+
SubTitle = $"Type \"{Keywords.RecentPages}\" or select this option to see recently modified pages",
7070
AutoCompleteText = $"{query.ActionKeyword} {Keywords.RecentPages}",
7171
IcoPath = Icons.Recent,
7272
Score = -1000,
@@ -201,7 +201,7 @@ public List<Result> LoadContextMenus(Result selectedResult)
201201

202202
private static string GetLastEdited(TimeSpan diff)
203203
{
204-
string lastEdited = "Last editied ";
204+
string lastEdited = "Last edited ";
205205
if (PluralCheck(diff.TotalDays, "day", ref lastEdited)
206206
|| PluralCheck(diff.TotalHours, "hour", ref lastEdited)
207207
|| PluralCheck(diff.TotalMinutes, "min", ref lastEdited)

NotebookExplorer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ private List<Result> GetSections(string[] searchStrings)
9696
results.Add(new Result
9797
{
9898
Title = "Create section: \"\"",
99-
SubTitle = "No (unecrypted) sections found. Type a valid title to create one",
99+
SubTitle = "No (unencrypted) sections found. Type a valid title to create one",
100100
IcoPath = Icons.NewSection
101101
});
102102
}

Readme.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ Append a number after `` rcntpgs: `` to display that number of recent pages. E.g
2929

3030
## Acknowledgements
3131

32-
Inpsired by the OneNote plugin for [Powertoy](https://github.com/microsoft/PowerToys/tree/main/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.OneNote) (Its a port with extra features)
32+
Inspired by the OneNote plugin for [PowerToys](https://github.com/microsoft/PowerToys/tree/main/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.OneNote) (Its a port with extra features)
3333

3434
Icons from [Icons8](https://icons8.com)
3535

36-
Created with [Scipe](https://github.com/scipbe/ScipBe-Common-Office) OneNote tools
36+
Created with [ScipBe](https://github.com/scipbe/ScipBe-Common-Office) OneNote tools

0 commit comments

Comments
 (0)