Minor typo fixes in 'getNicLink' and 'getNicVlan' method descriptions. Signed-off-by: Dimitris Bliablias <[email protected]> --- src/Ganeti/Query/Network.hs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/Ganeti/Query/Network.hs b/src/Ganeti/Query/Network.hs index dd345be..d7530dc 100644 --- a/src/Ganeti/Query/Network.hs +++ b/src/Ganeti/Query/Network.hs @@ -141,12 +141,12 @@ getNicMode :: PartialNicParams -> String getNicMode nic_params = maybe "-" nICModeToRaw $ nicpModeP nic_params --- | Retrieves the network's vlan and formats it human-readable, also in +-- | Retrieves the network's link and formats it human-readable, also in -- case it it not available. getNicLink :: PartialNicParams -> String getNicLink nic_params = fromMaybe "-" (nicpLinkP nic_params) --- | Retrieves the network's link and formats it human-readable, also in +-- | Retrieves the network's vlan and formats it human-readable, also in -- case it it not available. getNicVlan :: PartialNicParams -> String getNicVlan nic_params = fromMaybe "-" (nicpVlanP nic_params) -- 2.1.4
