From 63c020b84e6e6f67bf3f97282f87a55e1462fd5d Mon Sep 17 00:00:00 2001 From: Philipp Kunz Date: Mon, 16 Nov 2015 23:43:11 +0100 Subject: [PATCH] updated Readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index dae133d..eb42ecb 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ beautylog allows displaying data in nice tables for better overview. ```javascript var bl = require('beautylog')("os"); //for use in OS console environment -var myTable = bl.table.new("checks"); //you can specify formats to trigger things like the green and red badges +var myTable = bl.table.new("checks"); //you can specify a format like "checks" to trigger things like the green and red badges myTable.push(["check 1","success"]); // adds a row the myTable myTable.push(["check 2","error"]); // adds a row the myTable myTable.push(["check 3","error"]); // adds a row the myTable