From 2e826844914c4bd70f484ad86eff6ab3bcf38380 Mon Sep 17 00:00:00 2001 From: taichi uchihara Date: Tue, 12 Mar 2024 09:32:57 +0900 Subject: [PATCH] Fix docs (#105) --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index fa9fbfe..4092a4e 100644 --- a/README.md +++ b/README.md @@ -289,7 +289,8 @@ lookuper := envconfig.MapLookuper(map[string]string{ }) var config Config -envconfig.ProcessWith(ctx, &config, &envconfig.Config{ +envconfig.ProcessWith(ctx, &envconfig.Config{ + Target: &config, Lookuper: lookuper, }) ```