From 7676d0164f49acadfe6420ccc4d3ef1b23be2f71 Mon Sep 17 00:00:00 2001 From: Seth Pollack Date: Thu, 11 Dec 2014 11:21:48 -0500 Subject: [PATCH] Update intro.md --- src/doc/intro.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/doc/intro.md b/src/doc/intro.md index e2cccef5b4a1d..0c7aa9ad788b7 100644 --- a/src/doc/intro.md +++ b/src/doc/intro.md @@ -155,13 +155,13 @@ when you have unrestricted access to memory. As an example, here's some Ruby code: ```{ruby} -v = []; +v = [] -v.push("Hello"); +v.push("Hello") -x = v[0]; +x = v[0] -v.push("world"); +v.push("world") puts x ```