the-basics.mdx: Fix punctuation formatting

This commit is contained in:
Tobbe Lundberg
2021-05-07 14:51:37 +02:00
parent aba9b2e19e
commit f0d32d7754

View File

@@ -23,7 +23,7 @@ circle(5);
square([15,3]); square([15,3]);
``` ```
`circle(5);` gives us a circle with a radius of `5` and `square` is the 2d version of `cube` . Here we've given it dimensions of 15 and 2 for x and y respectively (or width and height if you prefer) . `circle(5);` gives us a circle with a radius of `5` and `square` is the 2d version of `cube` . Here we've given it dimensions of 15 and 3 for x and y respectively (or width and height if you prefer) .
<Image img={circleCube} className="mb-8 bg-contain rounded-md overflow-hidden" /> <Image img={circleCube} className="mb-8 bg-contain rounded-md overflow-hidden" />