summary refs log tree commit diff
path: root/pkgs/desktops/gnome/extensions
diff options
context:
space:
mode:
authorRyan Horiguchi <ryan.horiguchi@gmail.com>2022-04-23 01:19:38 +0200
committerRyan Horiguchi <ryan.horiguchi@gmail.com>2022-04-23 01:36:58 +0200
commit30818451447ab1c076caa5c36fc0310895f2ab3d (patch)
tree40caf4d67beb491ac7d1cdf804abd48343fb9f18 /pkgs/desktops/gnome/extensions
parentbce4a670cc2ffbbbf222249bb2442a73509b68ae (diff)
gnomeExtensions: update-extensions.py fix typos
Diffstat (limited to 'pkgs/desktops/gnome/extensions')
-rwxr-xr-xpkgs/desktops/gnome/extensions/update-extensions.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/desktops/gnome/extensions/update-extensions.py b/pkgs/desktops/gnome/extensions/update-extensions.py
index 619569f8d3d71..3430e46d04015 100755
--- a/pkgs/desktops/gnome/extensions/update-extensions.py
+++ b/pkgs/desktops/gnome/extensions/update-extensions.py
@@ -21,7 +21,7 @@ supported_versions = {
     "42": "42",
 }
 
-# Some type alias to increase readility of complex compound types
+# Some type alias to increase readability of complex compound types
 PackageName = str
 ShellVersion = str
 Uuid = str
@@ -52,7 +52,7 @@ def fetch_extension_data(uuid: str, version: str) -> Tuple[str, str]:
 
     # Yes, we download that file three times:
 
-    # The first time is for the maintainter, so they may have a personal backup to fix potential issues
+    # The first time is for the maintainer, so they may have a personal backup to fix potential issues
     # subprocess.run(
     #     ["wget", url], capture_output=True, text=True
     # )
@@ -116,7 +116,7 @@ def generate_extension_versions(
             "version": str(extension_version),
             "sha256": sha256,
             # The downloads are impure, their metadata.json may change at any time.
-            # Thus, be back it up / pin it to remain deterministic
+            # Thus, we back it up / pin it to remain deterministic
             # Upstream issue: https://gitlab.gnome.org/Infrastructure/extensions-web/-/issues/137
             "metadata": metadata,
         }
@@ -153,7 +153,7 @@ def process_extension(extension: Dict[str, Any]) -> Optional[Dict[str, Any]]:
                    Don't make any assumptions on it, and treat it like an opaque string!
             "link" follows the following schema: "/extension/$number/$string/"
                    The number is monotonically increasing and unique to every extension.
-                   The string is usually derived from the extensions's name (but shortened, kebab-cased and URL friendly).
+                   The string is usually derived from the extension name (but shortened, kebab-cased and URL friendly).
                    It may diverge from the actual name.
             The keys of "shell_version_map" are GNOME Shell version numbers.