typo: throgh -> through

This commit is contained in:
Infinidoge 2021-10-22 11:09:45 -04:00
parent 48a5143664
commit fa2bb27f02

View file

@ -30,12 +30,12 @@ in
local = mkOption { local = mkOption {
type = with types; listOf (either int string); type = with types; listOf (either int string);
default = [ ]; 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 { remote = mkOption {
type = with types; listOf (either int string); type = with types; listOf (either int string);
default = [ ]; 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``";
}; };
}; };
}; };