reorder for consistency

Onrder does not matter for mappend on set
This commit is contained in:
Joey Hess 2014-05-31 21:19:07 -04:00
parent 7c4b153739
commit d1aaf06f1c
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ instance Monoid Attr where
mappend old new = Attr
{ _os = _os old <> _os new
, _sshPubKey = _sshPubKey old <> _sshPubKey new
, _dns = _dns new <> _dns old
, _dns = _dns old <> _dns new
, _namedconf = _namedconf old <> _namedconf new
, _dockerImage = _dockerImage old <> _dockerImage new
, _dockerRunParams = _dockerRunParams old <> _dockerRunParams new