From bde9c0db1d23bff9325479310d8bc8409151f578 Mon Sep 17 00:00:00 2001 From: freddii Date: Tue, 26 Jan 2021 16:22:38 +0100 Subject: [PATCH] fixed typos --- README.md | 2 +- native/libwinbridge/bridge.cpp | 2 +- packager.py | 2 +- packager/win/modpath.iss | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index d696434..3939633 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/native/libwinbridge/bridge.cpp b/native/libwinbridge/bridge.cpp index 11c9ab9..577620a 100644 --- a/native/libwinbridge/bridge.cpp +++ b/native/libwinbridge/bridge.cpp @@ -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 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; diff --git a/packager.py b/packager.py index 6a944a1..edefd5e 100644 --- a/packager.py +++ b/packager.py @@ -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) diff --git a/packager/win/modpath.iss b/packager/win/modpath.iss index a48ae7b..a9a5c31 100644 --- a/packager/win/modpath.iss +++ b/packager/win/modpath.iss @@ -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;