From 23d0f4785a3fe6309155e4c29d167988d9189fc4 Mon Sep 17 00:00:00 2001 From: oliveagle Date: Fri, 15 May 2015 19:36:05 +0800 Subject: [PATCH] update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index cd42a2f..16d017b 100644 --- a/README.md +++ b/README.md @@ -82,7 +82,7 @@ currently a single viper only supports a single config file. panic(fmt.Errorf("Fatal error config file: %s \n", err)) } -### Reading Config from bytes.Buffer +### Reading Config from io.Reader Viper predefined many configuration sources, such as files, environment variables, flags and remote K/V store. But you are not bound to them. You can also implement your own way to @@ -107,7 +107,7 @@ eyes : brown beard: true `) -viper.ReadBufConfig(bytes.NewBuffer(yamlExample)) +viper.ReadConfig(bytes.NewBuffer(yamlExample)) viper.Get("name") // this would be "steve" ````