From 768f99bef8080489171abde09b8a974c6095cfd6 Mon Sep 17 00:00:00 2001 From: Jason Hall Date: Tue, 24 Mar 2020 01:33:21 +0000 Subject: [PATCH] Remove newline from docs --- docs/docs/variables.md | 1 - 1 file changed, 1 deletion(-) diff --git a/docs/docs/variables.md b/docs/docs/variables.md index da530c22..33e0c8f6 100644 --- a/docs/docs/variables.md +++ b/docs/docs/variables.md @@ -65,6 +65,5 @@ You can also define multiple variables with a single statement. ```js var a, b = 10, c = "hello!"; - print(a, b, c); // nil, 10, 'hello!' ```