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 ```