From 2f2a0f90d0ff5ef773f17451bfa2c679604562f7 Mon Sep 17 00:00:00 2001 From: Wolfy-J Date: Wed, 28 Oct 2020 15:38:37 +0300 Subject: - fix cfg typos --- plugins/rpc/config.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'plugins/rpc') diff --git a/plugins/rpc/config.go b/plugins/rpc/config.go index 802ed5ba..719fd5e3 100755 --- a/plugins/rpc/config.go +++ b/plugins/rpc/config.go @@ -17,14 +17,14 @@ type Config struct { Disabled bool } -// InitDefaults allows to init blank cfg with pre-defined set of default values. +// InitDefaults allows to init blank config with pre-defined set of default values. func (c *Config) InitDefaults() { if c.Listen == "" { c.Listen = "tcp://127.0.0.1:6001" } } -// Valid returns nil if cfg is valid. +// Valid returns nil if config is valid. func (c *Config) Valid() error { if dsn := strings.Split(c.Listen, "://"); len(dsn) != 2 { return errors.New("invalid socket DSN (tcp://:6001, unix://file.sock)") -- cgit v1.2.3