From 0a29bfd03e0314e0700e80b976033cbf119276c2 Mon Sep 17 00:00:00 2001 From: Sung Yoon Whang Date: Tue, 13 Dec 2022 11:03:30 -0800 Subject: [PATCH] [chore] Update doc on Option (#366) The doc on Option mentions that there is no concrete implementation of it, but that is no longer the case as we've added several options to configure the container. This updates that part of the doc. --- container.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/container.go b/container.go index 19fc65f3..983fd3f9 100644 --- a/container.go +++ b/container.go @@ -53,8 +53,7 @@ func (k key) String() string { return k.t.String() } -// Option configures a Container. It's included for future functionality; -// currently, there are no concrete implementations. +// Option configures a Container. type Option interface { applyOption(*Container) }