From 88805717ba9068572c66269d6cc2545c1581d25b Mon Sep 17 00:00:00 2001 From: Tim Peoples Date: Wed, 31 Jan 2024 08:22:53 -0800 Subject: [PATCH] An innoccuous change to "README.md" --- README.md | 26 -------------------------- 1 file changed, 26 deletions(-) diff --git a/README.md b/README.md index d1271da..b3195ff 100644 --- a/README.md +++ b/README.md @@ -48,11 +48,6 @@ For both Interpolator constructors, the caller must provide a Resolver for resolving variable names to their associated values. - - - - - ### func [New](/src/target/interp.go?s=1089:1123#L32) ``` go func New(g Resolver) *Interpolator @@ -69,9 +64,6 @@ NewWithFormat returns a new Interpolator for the given Resolver and specified VarFormat. - - - ### func (\*Interpolator) [Interpolate](/src/target/interp.go?s=1807:1867#L50) ``` go func (i *Interpolator) Interpolate(s string) (string, error) @@ -86,8 +78,6 @@ Interpolate continues this process until it no longer finds a variable expression in the provided string, or an error is encountered. - - ## type [Resolver](/src/target/interp.go?s=211:486#L11) ``` go type Resolver interface { @@ -100,14 +90,6 @@ type Resolver interface { Resolver is used by Interpolator to lookup values for interpolated variables. - - - - - - - - ## type [Value](/src/target/interp.go?s=2639:2661#L85) ``` go type Value interface{} @@ -124,14 +106,6 @@ the following guidelines: * Otherwise the value is passed through fmt.Sprintf("%v") - - - - - - - - ## type [VarFormat](/src/target/varfmt.go?s=175:405#L12) ``` go type VarFormat struct {