diff --git a/modules/ssh-tunnel.nix b/modules/ssh-tunnel.nix index a5e6650..4a483c8 100644 --- a/modules/ssh-tunnel.nix +++ b/modules/ssh-tunnel.nix @@ -30,12 +30,12 @@ in local = mkOption { type = with types; listOf (either int string); default = [ ]; - description = "List of local ports to open throgh the ssh tunnel. See ssh(1) for ``-L``"; + description = "List of local ports to open through the ssh tunnel. See ssh(1) for ``-L``"; }; remote = mkOption { type = with types; listOf (either int string); default = [ ]; - description = "List of remote ports to open throgh the ssh tunnel. See ssh(1) for ``-R``"; + description = "List of remote ports to open through the ssh tunnel. See ssh(1) for ``-R``"; }; }; };