From 0669e3cc54bb17e233dd79249d7419d9a131691d Mon Sep 17 00:00:00 2001 From: Sebastian Zartner Date: Mon, 8 Sep 2014 10:45:24 +0200 Subject: [PATCH] Corrected general syntax definition --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a5410f6..23a1199 100644 --- a/README.md +++ b/README.md @@ -43,7 +43,7 @@ The de-facto standard console contains the following methods/signatures: // sends a message of the appropriate level to the logging system // supported levels are 'debug', 'info', 'warn', 'error' (log is an alias for debug) // message can contain standard % tokens and optional args provide data -console[level](message, ...); +console.[level](message, ...); // send a message containing the properties of an object to the logging system (debug level)