From 0b9f842a27e05bb25328ee3ea3d896921ce4d25f Mon Sep 17 00:00:00 2001 From: Ruslan <44776391+hararudoka@users.noreply.github.com> Date: Wed, 7 Dec 2022 23:43:10 +0000 Subject: [PATCH] typo in docs --- layout/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/layout/config.go b/layout/config.go index a5f4d66..f65b0a1 100644 --- a/layout/config.go +++ b/layout/config.go @@ -19,7 +19,7 @@ func (c *Config) Unmarshal(v interface{}) error { return c.v.Unmarshal(v) } -// UnmarshalKey parses the specific ke in the config into the out value. +// UnmarshalKey parses the specific key in the config into the out value. func (c *Config) UnmarshalKey(k string, v interface{}) error { return c.v.UnmarshalKey(k, v) }