From cdaeb136d08ec2d9c8d5790abcac3e184be00d0e Mon Sep 17 00:00:00 2001
From: Revar Desmera <revarbat@gmail.com>
Date: Sun, 12 May 2019 03:46:53 -0700
Subject: [PATCH] Examples fixes for shapes2d

---
 shapes2d.scad | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/shapes2d.scad b/shapes2d.scad
index 07c98824..9cf3f535 100644
--- a/shapes2d.scad
+++ b/shapes2d.scad
@@ -114,10 +114,10 @@ function pie_slice2d(r=undef, d=undef, ang=30) =
 //   d = The diameter of the circle to get a slice of.
 //   ang = The angle of the arc of the pie slice.
 // Examples(2D):
-//   pie_slice2d(r=50,arc=30);
-//   pie_slice2d(d=100,arc=45);
-//   pie_slice2d(d=40,arc=120);
-//   pie_slice2d(d=40,arc=240);
+//   pie_slice2d(r=50,ang=30);
+//   pie_slice2d(d=100,ang=45);
+//   pie_slice2d(d=40,ang=120);
+//   pie_slice2d(d=40,ang=240);
 module pie_slice2d(r=undef, d=undef, ang=30) {
 	pts = pie_slice2d(r=r, d=d, ang=ang);
 	polygon(pts);