From fa2bb27f02fc136f8e14b9777270c6c324b35d52 Mon Sep 17 00:00:00 2001 From: Infinidoge Date: Fri, 22 Oct 2021 11:09:45 -0400 Subject: [PATCH] typo: throgh -> through --- modules/ssh-tunnel.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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``"; }; }; };