From 0ff5f1ff8cd8bbc3326bd42df74575849de5a2db Mon Sep 17 00:00:00 2001 From: Havoc Pennington Date: Wed, 30 Nov 2011 11:18:46 -0500 Subject: [PATCH] README code example fix --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 67808f4b..0630ffd3 100644 --- a/README.md +++ b/README.md @@ -56,7 +56,7 @@ and warrant that you have the legal authority to do so. Config conf = ConfigFactory.load(); int bar1 = conf.getInt("foo.bar"); Config foo = conf.getConfig("foo"); - int bar2 = obj.getInt("bar"); + int bar2 = foo.getInt("bar"); ## Longer Examples