diff options
| -rw-r--r-- | doc/haskell_newbie.mdwn | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/haskell_newbie.mdwn b/doc/haskell_newbie.mdwn index d6e339ed..dc3c54a7 100644 --- a/doc/haskell_newbie.mdwn +++ b/doc/haskell_newbie.mdwn @@ -47,12 +47,12 @@ Finally, you need to define the configuration for each host in the list: [[!format haskell """ mylaptop :: Host -mylaptop = host "mylaptop.example.com" +mylaptop = host "mylaptop.example.com" $ props & osDebian Unstable X86_64 & Apt.stdSourcesList myserver :: Host -myserver = host "server.example.com" +myserver = host "server.example.com" $ props & osDebian (Stable "jessie") X86_64 & Apt.stdSourcesList & Apt.installed ["ssh"] |
