forked from toolshed/abra
		
	docs: wording [ci skip]
This commit is contained in:
		@ -11,13 +11,13 @@ type Config struct {
 | 
			
		||||
	EnsureRecipeLatest bool // ensure the local recipe has latest changes
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// Option modified a Config. The convetion for passing Options to functions is
 | 
			
		||||
// so far, only used in internal/validate.go. A Config is then constructed and
 | 
			
		||||
// passed down further into the code. This may change in the future but this is
 | 
			
		||||
// at least the abstraction so far.
 | 
			
		||||
// Option modifies a Config. The convention for passing an Option to a function
 | 
			
		||||
// is so far, only used in internal/validate.go. A Config is then constructed
 | 
			
		||||
// and passed down further into the code. This may change in the future but
 | 
			
		||||
// this is at least the abstraction so far.
 | 
			
		||||
type Option func(c *Config)
 | 
			
		||||
 | 
			
		||||
// New instantiates a new Config.
 | 
			
		||||
// New instantiates a Config.
 | 
			
		||||
func New(opts ...Option) *Config {
 | 
			
		||||
	conf := &Config{
 | 
			
		||||
		EnsureRecipeExists: true,
 | 
			
		||||
 | 
			
		||||
		Reference in New Issue
	
	Block a user