fixed typos

This commit is contained in:
freddii 2021-01-26 16:22:38 +01:00
parent 386a351df7
commit bde9c0db1d
4 changed files with 4 additions and 4 deletions

View File

@ -62,7 +62,7 @@ please consider making a small donation, it really helps :)
Many people helped the project along the way, thanks to all of you. In particular, I want to thank:
* [Scrumplex](https://scrumplex.net/) - Official AUR repo mantainer and Linux Guru
* [Scrumplex](https://scrumplex.net/) - Official AUR repo maintainer and Linux Guru
* [Luca Antognetti](https://github.com/luca-ant) - Linux and Windows Tester
* [Matteo Pellegrino](https://www.matteopellegrino.me/) - MacOS Tester
* [Timo Runge](http://timorunge.com/) - MacOS contributor

View File

@ -260,7 +260,7 @@ LRESULT CALLBACK window_procedure(HWND window, unsigned int msg, WPARAM wp, LPAR
// Convert the virtual key to an unicode char
std::array<WCHAR, 4> buffer;
// This flag is needed to avoid chaning the keyboard state for some layouts.
// This flag is needed to avoid changing the keyboard state for some layouts.
// Refer to issue: https://github.com/federico-terzi/espanso/issues/86
UINT flags = 1 << 2;

View File

@ -87,7 +87,7 @@ def build_windows(package_info):
modulo_url = "https://github.com/federico-terzi/modulo/releases/download/v{0}/modulo-win.exe".format(package_info.modulo_version)
modulo_sha_url = "https://github.com/federico-terzi/modulo/releases/download/v{0}/modulo-win.exe.sha256.txt".format(package_info.modulo_version)
print("Pulling modulo depencency from:", modulo_url)
print("Pulling modulo dependency from:", modulo_url)
modulo_target_file = os.path.join(TARGET_DIR, "modulo.exe")
urllib.request.urlretrieve(modulo_url, modulo_target_file)
print("Pulling SHA signature from:", modulo_sha_url)

View File

@ -144,7 +144,7 @@ begin
end;
end;
// Split a string into an array using passed delimeter
// Split a string into an array using passed delimiter
procedure MPExplode(var Dest: TArrayOfString; Text: String; Separator: String);
var
i: Integer;