From 4542849ccf3b5eb088b5e294c55a48ff46b47466 Mon Sep 17 00:00:00 2001 From: plato Date: Mon, 9 Feb 2015 19:50:31 -0600 Subject: [PATCH] Fix typo in javascript "The console" documentation Fix missing quote --- docs_md/core_manual_js.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs_md/core_manual_js.md b/docs_md/core_manual_js.md index aa68b6b..8f2a0f7 100644 --- a/docs_md/core_manual_js.md +++ b/docs_md/core_manual_js.md @@ -100,7 +100,7 @@ If you want to log stuff to the console, you need to require the console object: var console = require('vertx/console'); - console.log("hello world!); + console.log("hello world!"); ## Loading other scripts in the current scope