From 011d8658d0b9d76cba90d3954810b5cd9d865230 Mon Sep 17 00:00:00 2001 From: Bob Whitelock Date: Sat, 13 Aug 2016 23:11:30 +0100 Subject: [PATCH] Correct Style class name in README Using the existing name was giving me `uninitialized constant Terminal::Style (NameError)`; changing this to use the name in this commit resolved this error. --- README.rdoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.rdoc b/README.rdoc index e20ad94..cd1a24a 100644 --- a/README.rdoc +++ b/README.rdoc @@ -190,7 +190,7 @@ And change styles on the fly: To change the default style options: - Terminal::Style.defaults = {:width => 80} + Terminal::Table::Style.defaults = {:width => 80} All Table objects created afterwards will inherit these defaults.