From 5ca0f72472a08ee42231410642a4928a3d58c61f Mon Sep 17 00:00:00 2001 From: Ian-Woo Kim Date: Sat, 17 Dec 2016 17:48:29 -0800 Subject: [PATCH] nixos-container: break lines in description of forwardPorts. --- nixos/modules/virtualisation/containers.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/nixos/modules/virtualisation/containers.nix b/nixos/modules/virtualisation/containers.nix index 5c867cbc2c81..f79854967f1d 100644 --- a/nixos/modules/virtualisation/containers.nix +++ b/nixos/modules/virtualisation/containers.nix @@ -347,7 +347,10 @@ let default = []; example = [ { protocol = "tcp"; hostPort = 8080; containerPort = 80; } ]; description = '' - List of forwarded ports from host to container. Each forwarded port is specified by protocol, hostPort and containerPort. By default, protocol is tcp and hostPort and containerPort are assumed to be the same if containerPort is not explicitly given. + List of forwarded ports from host to container. Each forwarded port + is specified by protocol, hostPort and containerPort. By default, + protocol is tcp and hostPort and containerPort are assumed to be + the same if containerPort is not explicitly given. ''; };