From 8578c271bb13336803d49699f45f9f1f9da1b776 Mon Sep 17 00:00:00 2001 From: Steve Brunton Date: Mon, 10 Feb 2020 13:46:48 -0500 Subject: [PATCH] fixed typo (#72) typo fixed --- config/config.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/config.go b/config/config.go index 981a439..7d10027 100644 --- a/config/config.go +++ b/config/config.go @@ -13,7 +13,7 @@ type Config struct { Features struct { BGP bool `yaml:"bgp,omitempty"` DHCP bool `yaml:"dhcp,omitempty"` - DHCPL bool `yaml:"dhcpl,omitemptu"` + DHCPL bool `yaml:"dhcpl,omitempty"` DHCPv6 bool `yaml:"dhcpv6,omitempty"` Routes bool `yaml:"routes,omitempty"` POE bool `yaml:"poe,omitempty"` @@ -34,7 +34,7 @@ type Device struct { Srv SrvRecord `yaml:"srv,omitempty"` User string `yaml:"user"` Password string `yaml:"password"` - Port string `yaml:"port"` + Port string `yaml:"port"` } type SrvRecord struct {