fixed typos
This commit is contained in:
parent
386a351df7
commit
bde9c0db1d
|
@ -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
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
|
@ -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)
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue
Block a user