about summary refs log tree commit diff
path: root/pkgs/games
diff options
context:
space:
mode:
authorfigsoda <figsoda@pm.me>2022-12-17 19:39:44 -0500
committerfigsoda <figsoda@pm.me>2022-12-17 19:39:44 -0500
commitec8cb3435824ebf8867ae3d5ad0977b4744c0c21 (patch)
tree007828e3a46976417994674995c743f63eff633d /pkgs/games
parent6bb0dbf91feecfec45382f762206a12de23fd531 (diff)
downloadnixlib-ec8cb3435824ebf8867ae3d5ad0977b4744c0c21.tar
nixlib-ec8cb3435824ebf8867ae3d5ad0977b4744c0c21.tar.gz
nixlib-ec8cb3435824ebf8867ae3d5ad0977b4744c0c21.tar.bz2
nixlib-ec8cb3435824ebf8867ae3d5ad0977b4744c0c21.tar.lz
nixlib-ec8cb3435824ebf8867ae3d5ad0977b4744c0c21.tar.xz
nixlib-ec8cb3435824ebf8867ae3d5ad0977b4744c0c21.tar.zst
nixlib-ec8cb3435824ebf8867ae3d5ad0977b4744c0c21.zip
treewide: fix typos
Diffstat (limited to 'pkgs/games')
-rw-r--r--pkgs/games/gl-gsync-demo/default.nix2
-rw-r--r--pkgs/games/openra/default.nix2
-rw-r--r--pkgs/games/openra/packages.nix2
3 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/games/gl-gsync-demo/default.nix b/pkgs/games/gl-gsync-demo/default.nix
index a4b30c572a00..968d4d5e4a3d 100644
--- a/pkgs/games/gl-gsync-demo/default.nix
+++ b/pkgs/games/gl-gsync-demo/default.nix
@@ -27,7 +27,7 @@ stdenv.mkDerivation rec {
     maintainers = with maintainers; [ atemu ];
     description = "A very basic OpenGL demo for testing NVIDIA's G-SYNC technology on Linux";
     longDescription = ''
-      The demo simply draws a vertical bar moving accross the screen at constant speed, but deliberately rendered at a variable frame rate.
+      The demo simply draws a vertical bar moving across the screen at constant speed, but deliberately rendered at a variable frame rate.
 
       The min and max frame rates can be manually changed at runtime, by step of 10 fps and with a min of 10 fps.
 
diff --git a/pkgs/games/openra/default.nix b/pkgs/games/openra/default.nix
index d99663091474..76454f69e4b3 100644
--- a/pkgs/games/openra/default.nix
+++ b/pkgs/games/openra/default.nix
@@ -13,7 +13,7 @@ with pkgs.lib;
 let
   /*  Building an engine or out-of-tree mod is very similar,
       but different enough not to be able to build them with the same package definition,
-      so instaed we define what is common between them in a seperate file.
+      so instaed we define what is common between them in a separate file.
 
       Although `callPackage` could be used, it would require undoing `makeOverridable`,
       because `common.nix` does not define a package, but just an attribute set,
diff --git a/pkgs/games/openra/packages.nix b/pkgs/games/openra/packages.nix
index e98ebcaee44f..5ee78fe2b8ff 100644
--- a/pkgs/games/openra/packages.nix
+++ b/pkgs/games/openra/packages.nix
@@ -3,7 +3,7 @@ pkgs:
 let
   /*  Building an engine or out-of-tree mod is very similar,
       but different enough not to be able to build them with the same package definition,
-      so instaed we define what is common between them in a seperate file.
+      so instaed we define what is common between them in a separate file.
 
       Although `callPackage` could be used, it would require undoing `makeOverridable`,
       because `common.nix` does not define a package, but just an attribute set,